Skip to content

Commit

Permalink
Tweak CI workflows
Browse files Browse the repository at this point in the history
Signed-off-by: moznion <moznion@mail.moznion.net>
  • Loading branch information
moznion committed Sep 28, 2023
1 parent d472065 commit da858de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: check out
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: install tools
run: "go install golang.org/x/tools/cmd/goimports@latest"
- name: golangci-lint
Expand All @@ -25,7 +25,7 @@ jobs:
- name: check
run: make ci-check
- name: upload coverage
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/moznion/go-optional

go 1.19
go 1.21

require (
github.com/mattn/go-sqlite3 v1.14.17
Expand Down

0 comments on commit da858de

Please sign in to comment.