Skip to content

fix issue with final next on routers #37

fix issue with final next on routers

fix issue with final next on routers #37

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/checkout@v3.3.0
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.20.5'
- name: Install pnpm
uses: pnpm/action-setup@v2.2.4
with:
version: 8.6
- name: Build Source
run: go build -v ./...
- name: Run Tests
run: go test -v ./...