Skip to content

Commit

Permalink
github: add setup go step
Browse files Browse the repository at this point in the history
  • Loading branch information
muraty committed Jan 27, 2025
1 parent 43d4a94 commit b17e887
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'

- name: Run linter
uses: golangci/golangci-lint-action@v3
with:
version: v1.49.0

- name: Run tests
run: make test

- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: ./coverage/covprofile
path-to-profile: ./coverage/covprofile

0 comments on commit b17e887

Please sign in to comment.