Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jbsv committed Apr 10, 2024
1 parent f36b4f3 commit 8c8c3ac
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/go_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Set up Go ^1.19
uses: actions/setup-go@v3
- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Set up Go 1.21
uses: actions/setup-go@v4
with:
go-version: ^1.19
go-version: "1.21"

- name: Check out code into the Go module directory
uses: actions/checkout@v3

- name: Lint
run: make lint

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/go_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
env:
LLVL: trace
steps:
- name: Set up Go ^1.19
uses: actions/setup-go@v3
- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Set up Go 1.21
uses: actions/setup-go@v4
with:
go-version: ^1.19
go-version: "1.21"

- name: Check out code into the Go module directory
uses: actions/checkout@v3

- name: Test without coverage
env:
CRY_LVL: "warn"
Expand Down

0 comments on commit 8c8c3ac

Please sign in to comment.