Skip to content

Commit

Permalink
fix CI, I hope
Browse files Browse the repository at this point in the history
  • Loading branch information
josharian committed Jan 16, 2024
1 parent cc2523e commit e0454a7
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/test.yml
Expand Up @@ -4,13 +4,14 @@ on: [push, pull_request]

jobs:
test:
runs-on: 'ubuntu-latest'
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v2
with:
go-version: 1.14
- name: run go tests
run: |
go test -v ./...
go test -v -race ./...
- uses: actions/checkout@master
- uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
cache: true
- name: run go tests
run: |
go test -v ./...
go test -v -race ./...

0 comments on commit e0454a7

Please sign in to comment.