Skip to content

Feature/markers

Feature/markers #6

Workflow file for this run

name: test
on:
pull_request:
permissions:
contents: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Test with Go
run: go test ./... -json > TestResults.json
- name: Upload Go test results
uses: actions/upload-artifact@v4
with:
name: Go-results
path: TestResults.json