Skip to content

docs: add get-quota page and enforce GitHub Pages update in dev workflow #37

docs: add get-quota page and enforce GitHub Pages update in dev workflow

docs: add get-quota page and enforce GitHub Pages update in dev workflow #37

Workflow file for this run

name: Run Tests
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
on:
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
go-version: ['1.22', '1.23']
steps:
- uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
working-directory: go
run: CGO_ENABLED=0 go build -o grn .
- name: Verify binary
working-directory: go
run: ./grn --version
- name: Run tests
working-directory: go
run: go test ./... -v