Skip to content

Mark x/sys as a direct dependency #46

Mark x/sys as a direct dependency

Mark x/sys as a direct dependency #46

Workflow file for this run

name: go test
on: [push]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build
run: go build -v -o . ./...
- name: Test
run: go test -v ./...