Skip to content

Make ExtractLicenses handle large expressions #183

Make ExtractLicenses handle large expressions

Make ExtractLicenses handle large expressions #183

Workflow file for this run

name: "Build and test"
on:
push:
branches: [main]
pull_request: {}
workflow_dispatch: # Sometimes tests get stuck in PRs; This allows them to be rerun manually
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: "1.24"
- name: Build program
run: go build ./...
- name: Run tests
run: go test -race ./...