Skip to content

Run all actions on self-hosted runners #6

Run all actions on self-hosted runners

Run all actions on self-hosted runners #6

Workflow file for this run

name: Linux test
on:
pull_request:
paths-ignore:
- 'docs/**'
- '**/*.md'
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./... -race