Skip to content

Commit 5b9c211

Browse files
authored
Merge pull request #62 from adityasaky/fix-actions
actions: Add Go 1.21, remove coveralls reporting
2 parents 8c0fa8d + 00081bd commit 5b9c211

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.18.x, 1.19.x, 1.20.x]
7+
go-version: [1.18.x, 1.19.x, 1.20.x, 1.21.x]
88
os: [ubuntu-latest, macos-latest, windows-latest]
99
runs-on: ${{ matrix.os }}
1010
steps:
@@ -18,14 +18,7 @@ jobs:
1818
if: runner.os == 'Linux'
1919
run: test -z $(go fmt ./...)
2020
- name: Test
21-
run: go test -covermode atomic -coverprofile='profile.cov' ./...
22-
- name: Send coverage
23-
if: runner.os == 'Linux'
24-
env:
25-
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26-
run: |
27-
GO111MODULE=off go get github.com/mattn/goveralls
28-
$(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github
21+
run: go test -v ./...
2922
staticcheck:
3023
name: "Run staticcheck"
3124
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)