Skip to content

chore(deps): bump packages, maintenance #210

chore(deps): bump packages, maintenance

chore(deps): bump packages, maintenance #210

Workflow file for this run

name: Unit testing
on: { push: { branches-ignore: [main, production] } }
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
unit-testing:
name: 🧪 Test the code
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with: { go-version-file: go.mod }
- name: Test the code
run: go test -race ./...