Skip to content

feat: restructure pillager for improved modularity and feature expansion [TASK-10] [TASK-11] [TASK-13] #197

feat: restructure pillager for improved modularity and feature expansion [TASK-10] [TASK-11] [TASK-13]

feat: restructure pillager for improved modularity and feature expansion [TASK-10] [TASK-11] [TASK-13] #197

Workflow file for this run

name: test
on: [pull_request]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Test
run: |
go test -race ./... -coverprofile cover.out
- name: Coverage
run: go tool cover -func cover.out