Skip to content

feat: Add support for scanning specific rules #445

feat: Add support for scanning specific rules

feat: Add support for scanning specific rules #445

Workflow file for this run

---
name: Testing - Unit
permissions: {}
# Split until path filtering for jobs added
# https://github.qkg1.topmunity/t/path-filtering-for-jobs-and-steps/16447
on:
push:
branches: [master]
paths:
- "**.go"
- "go.mod"
- "go.sum"
pull_request:
branches: [master]
paths:
- "**.go"
- "go.mod"
- "go.sum"
jobs:
unit:
name: Go Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version-file: go.mod
- name: Run go unit tests
run: |
make test-unit