Skip to content

refactor: remove trailing whitespace in repo.go and containers.go #22

refactor: remove trailing whitespace in repo.go and containers.go

refactor: remove trailing whitespace in repo.go and containers.go #22

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Check formatting, tidy, and vet
run: make check
- name: Build all binaries
run: make build
- name: Run unit tests
run: go test -race -count=1 ./internal/...
- name: Run integration tests
run: make test-integration