Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
phil9909 committed Sep 3, 2024
1 parent 5538e90 commit 2cf83bd
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,15 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu, macos, windows]
golang: ['1.13', '1.16', '1.17']
os: [ubuntu, windows]
golang: ['1.22', '1.23']
# currently, we cannot run non-x86_64 machines on Github Actions cloud env.
runs-on: ${{ matrix.os }}-latest
name: CI golang ${{ matrix.golang }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.golang }}
- name: Change GO11MODULES
run: go env -w GO111MODULE=auto
- name: Install requirements
run: |
go get github.com/bmizerany/assert
go get github.com/philhofer/fwd
go get github.com/tinylib/msgp
- name: Test
run: go test -v ./fluent

0 comments on commit 2cf83bd

Please sign in to comment.