Skip to content

Commit

Permalink
upgraded the go action
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Ledentsov <[email protected]>
  • Loading branch information
d-led committed Mar 1, 2023
1 parent ced493c commit 0019ea5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Go Fmt
run: go fmt ./...
- name: Test
run: go test ./...
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Expand Down

0 comments on commit 0019ea5

Please sign in to comment.