Skip to content

Commit

Permalink
ci: run tests on all operating systems
Browse files Browse the repository at this point in the history
  • Loading branch information
majori committed Nov 15, 2024
1 parent 83e1963 commit a28e4bf
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,21 @@ on:
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

- name: Setup docker (missing on MacOS)
if: runner.os == 'macos'
run: |
brew install docker colima qemu
colima version
colima start --cpu 3 --memory 6 --disk 100 --vm-type=qemu --mount-type=sshfs --dns=1.1.1.1
- uses: actions/setup-go@v5
with:
go-version: "1.23"
Expand Down

0 comments on commit a28e4bf

Please sign in to comment.