Skip to content

Merge pull request #13 from harness/fix/pr-list-crash-and-filters #32

Merge pull request #13 from harness/fix/pr-list-crash-and-filters

Merge pull request #13 from harness/fix/pr-list-crash-and-filters #32

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
ci:
name: Build, Test & Validate Specs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Install Task
uses: arduino/setup-task@v2
with:
version: 3.x
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
install-mode: goinstall
only-new-issues: true
- name: Unit tests
run: go test ./... -race -count=1
- name: Build
run: task build
- name: Validate specs
run: task check:specs