Skip to content

feat: Generalising Directory Parsing #226

feat: Generalising Directory Parsing

feat: Generalising Directory Parsing #226

Workflow file for this run

name: Go Test and Coverage
on:
push:
pull_request:
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
test-and-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: Run Tests
run: go test ./...
- name: Generate Test Coverage
run: go test -cover ./...