53 lines
No EOL
996 B
YAML
53 lines
No EOL
996 B
YAML
name: Run tests on self-hosted runners
|
|
|
|
on:
|
|
push:
|
|
branches: [ BigRefactor ]
|
|
pull_request:
|
|
branches: [ BigRefactor ]
|
|
|
|
jobs:
|
|
test-windows:
|
|
runs-on: [ self-hosted, Windows ]
|
|
name: Test on Windows
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: redanthrax/setup-go@ExtractArchiveFix
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
|
|
- name: Test
|
|
run: go test -v ./...
|
|
env:
|
|
CGO_ENABLED: 0
|
|
|
|
test-ubuntu:
|
|
runs-on: [ self-hosted, Linux ]
|
|
name: Test on Ubuntu
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
|
|
- name: Test
|
|
run: go test -v ./...
|
|
env:
|
|
CGO_ENABLED: 0
|
|
test-macos:
|
|
runs-on: [ self-hosted, macOS ]
|
|
name: Test on MacOS
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
|
|
- name: Test
|
|
run: go test -v ./... |