Skip to content

Commit

Permalink
Fix tests, upgrade actions
Browse files Browse the repository at this point in the history
  • Loading branch information
deniszh committed Aug 20, 2024
1 parent 01493c7 commit 68525a9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- name: Set up Go stable
if: matrix.go-version != 'tip'
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Set up Go tip
Expand All @@ -28,14 +28,14 @@ jobs:
- name: install cairo
run: sudo apt-get install libcairo2-dev -y
- name: checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: test
run: make test
- name: golangci-lint
if: matrix.go-version == '1.21.x'
uses: golangci/golangci-lint-action@v3
if: matrix.go-version == 'tip'
uses: golangci/golangci-lint-action@v6
with:
version: v1.54.2
version: v1.60.1
- name: integration test
if: matrix.go-version == '1.21.x'
if: matrix.go-version == 'tip'
run: tests/system_test.sh

0 comments on commit 68525a9

Please sign in to comment.