Skip to content

Adds support for writing supplemental junitxml reports #22

Adds support for writing supplemental junitxml reports

Adds support for writing supplemental junitxml reports #22

Workflow file for this run

name: Golang Style
on:
pull_request:
paths:
- '**.go'
jobs:
enforce:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Ensure Modules
run: make tidy
- name: Ensure Formatting
run: make fmt
- name: Run Linters
run: make lint
- name: Build Binary
run: make bin