Skip to content

Allowing to create Not/Regex/NotRegex matchers #239

Allowing to create Not/Regex/NotRegex matchers

Allowing to create Not/Regex/NotRegex matchers #239

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: install Go
uses: actions/setup-go@v5
with:
go-version-file: .go-version
cache: true
- name: Test
run: make test
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: install Go
uses: actions/setup-go@v5
with:
go-version-file: .go-version
cache: true
- name: Golangci-lint
uses: golangci/[email protected]