Skip to content

docs(plan): open the attribution soak log at the 0.3.0 proving run #35

docs(plan): open the attribution soak log at the 0.3.0 proving run

docs(plan): open the attribution soak log at the 0.3.0 proving run #35

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.25"
- uses: golangci/golangci-lint-action@v7
with:
version: v2.4
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
go-version: ["1.25"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- run: go vet ./...
- run: go test -race -count=1 -coverprofile=coverage.out ./...
- name: Coverage summary
run: go tool cover -func=coverage.out | tail -1
build:
runs-on: ${{ matrix.os }}
needs: [lint, test]
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.25"
- run: go build -o devreap ./cmd/devreap
- run: ./devreap version