Skip to content

Add MatchCap matcher #8

Add MatchCap matcher

Add MatchCap matcher #8

Workflow file for this run

name: PR Checks
on:
pull_request:
push: { branches: [master] }
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Set up Go 1.18.x
uses: actions/setup-go@v1
with:
go-version: 1.18.x
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: go-${{ hashFiles('**/go.sum') }}
restore-keys: go-
- name: Run linter and tests
run: make check