Skip to content

Implement more of the CLI #30

Implement more of the CLI

Implement more of the CLI #30

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
jobs:
lint:
name: GolangCI Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: GolangCI Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60.2
args: --out-format=colored-line-number
test:
name: Go Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Go Test
run: go test -v ./...