Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,27 @@ jobs:
- name: Uninstall
run: sudo make uninstall

cross-windows:
name: "Windows tests (cross)"
runs-on: ubuntu-20.04
timeout-minutes: 30
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.18.x
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install wine
run: |
sudo apt-get update
sudo apt-get install -y wine-binfmt wine64
sudo apt-get remove -y mono-runtime || true
- name: Unit tests
run: GOOS=windows GOARCH=amd64 go test -v ./...
- name: Make
run: make GOOS=windows GOARCH=amd64

integration:
name: Integration tests
runs-on: macos-11
Expand Down