Skip to content

Switch quota model to percent-used semantics, rename five_hour → session #30

Switch quota model to percent-used semantics, rename five_hour → session

Switch quota model to percent-used semantics, rename five_hour → session #30

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Run go vet
run: go vet ./...
- name: Run tests
run: go test ./...
- name: Build CLI
run: make build-cli
- name: Build trayapp
run: make build-trayapp
- name: Upload CLI artifact
uses: actions/upload-artifact@v7
with:
name: clusage-cli
path: clusage-cli
- name: Upload trayapp artifact
uses: actions/upload-artifact@v7
with:
name: trayapp
path: trayapp