Skip to content

Revert "support all or nothing" #19

Revert "support all or nothing"

Revert "support all or nothing" #19

Workflow file for this run

name: 'tparagen'
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: set up
uses: actions/setup-go@v5
with:
go-version: ^1.23
id: go
- name: check out
uses: actions/checkout@v4
test:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: test
run: go test ./... -v
lint:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3