chore: update deps (#80) #43
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.23.0 | |
- name: Build and tests | |
env: | |
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
LANG: en_US.UTF-8 | |
# using --trace has a side effect on the the test output. | |
run: make --trace all | |
- name: Send coverage report | |
uses: shogo82148/actions-goveralls@v1 | |
with: | |
path-to-profile: ./build/test-all.cover |