Skip to content

Commit

Permalink
Run tests on Go 1.18 (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aoang committed Mar 22, 2022
1 parent 039e37c commit 79433ac
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/test.yml
Expand Up @@ -2,14 +2,9 @@ on: [push, pull_request]
name: Test
jobs:
test:
env:
GOPATH: ${{ github.workspace }}
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
strategy:
matrix:
go-version: [1.11.x, 1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x]
go-version: [1.11.x, 1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -19,12 +14,8 @@ jobs:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
with:
path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
- name: Checkout dependencies
run: go get golang.org/x/xerrors
- name: Test
run: go test -v -race ./...
- name: Format
if: matrix.go-version == '1.17.x'
if: matrix.go-version == '1.18.x'
run: diff -u <(echo -n) <(gofmt -d .)

0 comments on commit 79433ac

Please sign in to comment.