Skip to content

Remove the automatic postprocess failure-policy machine #38

Remove the automatic postprocess failure-policy machine

Remove the automatic postprocess failure-policy machine #38

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.25'
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: npm
cache-dependency-path: web/wiki/package-lock.json
- name: Run go vet
run: make vet
- name: Run go test
run: CGO_ENABLED=1 go test -tags "fts5" ./... -count=1
- name: Build release binaries
run: make build
- name: Build Wiki UI
run: make wiki-build
- name: Capture go build JSON
run: make build-json
- name: Check npm wrapper syntax
run: |
node --check npm/install.js
node --check npm/bin/ccg.js
node --check npm/bin/ccg-server.js
- name: Upload go build JSON artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: go-build-json
path: build-results.json