Skip to content

build(deps): Bump cynic-codegen from 3.11.0 to 3.12.0 #108

build(deps): Bump cynic-codegen from 3.11.0 to 3.12.0

build(deps): Bump cynic-codegen from 3.11.0 to 3.12.0 #108

Workflow file for this run

name: check-verify-go
permissions:
contents: read
issues: read
checks: write
pull-requests: write
on:
push:
pull_request:
workflow_dispatch:
inputs:
ref:
description: "The ref (branch or SHA) to process"
required: false
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
defaults:
run:
shell: bash -xe {0}
jobs:
verify:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
with:
ref: ${{ github.event.inputs.ref }} # Use the ref if provided, otherwise defaults to the current branch/commit
- uses: nixbuild/nix-quick-install-action@v32
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Populate the nix store without Obelisk # Workaround for slow garnix cache
run: |
nix develop .#noObelisk --command echo
- name: Add garnix cache and populate the nix store with Obelisk
run: |
echo "extra-substituters = https://cache.garnix.io" >> ~/.config/nix/nix.conf
echo "extra-trusted-public-keys = cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g" >> ~/.config/nix/nix.conf
nix develop --command echo
- name: Build Rust Components
run: nix develop --command just rust
- name: Build Go Components
run: nix develop --command just go
- name: Verify obelisk-local-go variants
run: |
nix develop --command obelisk server verify --ignore-missing-env-vars --config obelisk-local-go-activity.toml
nix develop --command obelisk server verify --ignore-missing-env-vars --config obelisk-local-go-workflow.toml
nix develop --command obelisk server verify --ignore-missing-env-vars --config obelisk-local-go-webhook.toml
# obelisk-local-go-all.toml is verified by e2e workflow