Skip to content

Allow stringifying patterns #26

Allow stringifying patterns

Allow stringifying patterns #26

Workflow file for this run

name: Lint & Test
on:
push:
branches: master
pull_request:
workflow_dispatch:
jobs:
test:
name: Check Linting and Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/[email protected]
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.20.5'
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 8.6
- name: Build Source
run: go build -v ./...
- name: Run Tests
run: go test -v ./...