Skip to content

delete windows-specific Test_stop #245

delete windows-specific Test_stop

delete windows-specific Test_stop #245

Workflow file for this run

name: 'tests'
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
run_wgo_tests:
runs-on: 'ubuntu-latest'
steps:
- name: 'Clone repo'
uses: 'actions/checkout@v4'
- name: 'Install go'
uses: 'actions/setup-go@v6'
- run: 'go install github.com/mattn/goveralls@latest'
- run: 'go test . -coverprofile=coverage -race'
- run: 'goveralls -coverprofile=coverage -service=github || true'
env:
COVERALLS_TOKEN: '${{ secrets.GITHUB_TOKEN }}'