Skip to content

fix 🐛: simple fix #33

fix 🐛: simple fix

fix 🐛: simple fix #33

Workflow file for this run

name: test
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/[email protected]
with:
go-version: '1.21.4'
- name: Check out code
uses: actions/[email protected]
- name: Test and generate coverage report
run: cd src/ && go test -coverprofile=coverage.out ./...
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
file: coverage.out