Skip to content

refactor: make the flows testable #3

refactor: make the flows testable

refactor: make the flows testable #3

Workflow file for this run

---
name: Build and Test
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ">=1.22"
- run: go version
- run: go build -v ./cmd/protrans
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ">=1.22"
- run: go version
- run: go test -v ./...