Skip to content

repo: setup clean and build steps #10

repo: setup clean and build steps

repo: setup clean and build steps #10

Workflow file for this run

name: Run CI Tests
on:
pull_request:
paths-ignore:
- 'README.md'
- 'LICENSE'
push:
branches:
- 'main'
jobs:
run-copywrite:
timeout-minutes: 5
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: hashicorp/setup-copywrite@v1.1.3
- name: verify copyright
run: |
copywrite --config .github/workflows/scripts/copywrite.hcl \
headers --spdx "MPL-2.0" --plan
run-lint:
timeout-minutes: 5
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: golangci/golangci-lint-action@v6
with:
version: v1.60.3
args: --config .github/workflows/scripts/golangci.yaml
run-tests:
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
os:
- ubuntu-24.04
- macos-14
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: '**/go.sum'
- name: Run Go Test
run: |
make test