Skip to content

Merge branch 'main' of https://github.com/protroll30/distributed_task… #5

Merge branch 'main' of https://github.com/protroll30/distributed_task…

Merge branch 'main' of https://github.com/protroll30/distributed_task… #5

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
jobs:
go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Module graph
run: go mod download && go mod verify
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... -count=1
- name: Build
run: go build -o /dev/null ./cmd/...