Skip to content

feat: testing client vs pkg foler structutre #39

feat: testing client vs pkg foler structutre

feat: testing client vs pkg foler structutre #39

Workflow file for this run

name: Run tests and upload coverage
on: push
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.8
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: make test
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}