Skip to content

Add command to manage availability specs #129

Add command to manage availability specs

Add command to manage availability specs #129

Workflow file for this run

name: Test
on:
push:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.22.0"
cache: true
- name: Lint
run: go vet ./...
- name: Test
run: go test ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.2
args: --timeout=10m ./...