Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
wreulicke committed May 25, 2024
1 parent 7e4c74d commit b3f12c2
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,25 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
with:
go-version: '1.20.1'
- uses: actions/checkout@v3
go-version: '1.22.3'
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
with:
version: v1.51.1
version: v1.51.1
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-java@v4
with:
java-version: '22'
distribution: 'temurin'
- uses: actions/setup-go@v5
with:
go-version: '1.22.3'
- uses: actions/checkout@v4
- name: test
run: make test

0 comments on commit b3f12c2

Please sign in to comment.