Skip to content

Add --list option to highlight + more caching (#36) #72

Add --list option to highlight + more caching (#36)

Add --list option to highlight + more caching (#36) #72

Workflow file for this run

name: Test Incoming Changes
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v9
- name: Run make lint
run: make lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Run make test
run: make test