Skip to content

Commit

Permalink
Update to stable versions of GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
belak committed Jan 19, 2021
1 parent 9c29b9d commit 9b03fa9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -12,17 +12,20 @@ jobs:

steps:
- name: Set up Go
uses: actions/setup-go@v2-beta
uses: actions/setup-go@v2
with:
go-version: '^1.7'

- name: Check out code
uses: actions/checkout@9a3a9ade
uses: actions/checkout@v2
with:
submodules: true

- name: Clean up extra files
run: rm ./testcases/*.go

- name: Download deps
run: go mod download

- name: Run golangci-lint
uses: actions-contrib/golangci-lint@v1
Expand All @@ -31,9 +34,6 @@ jobs:
with:
golangci_lint_version: 'v1.23.6'

- name: Download deps
run: go mod download

- name: Run tests
run: go test -race -v ./...

Expand Down

0 comments on commit 9b03fa9

Please sign in to comment.