Skip to content

feat(conv): add sorting, status filtering, and UPDATED column #7

feat(conv): add sorting, status filtering, and UPDATED column

feat(conv): add sorting, status filtering, and UPDATED column #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install tools
run: make tools
- name: Format check
run: make fmt-check
- name: Lint
run: make lint
- name: Test
run: make test
- name: Build
run: make build
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build (CGO for keychain)
run: CGO_ENABLED=1 go build -o bin/frontcli ./cmd/frontcli
- name: Test binary
run: ./bin/frontcli version