Skip to content

Remove unused action #95

Remove unused action

Remove unused action #95

Workflow file for this run

name: 'test'
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
workflow_dispatch:
concurrency:
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
test:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/setup-go@v5'
with:
go-version-file: 'go.mod'
- name: 'Run tests'
run: |-
go test \
-count=1 \
-race \
-shuffle=on \
-timeout='10m' \
./...