quintodrome/.github/workflows/ci.yml
Philip Peterson 1104f6467a
Some checks are pending
CI / ci (push) Waiting to run
Fix Dagger CLI install path in CI workflows
2026-08-25 14:17:44 -08:00

26 lines
509 B
YAML

name: CI
on:
push:
branches: [master]
tags: ["v*"]
pull_request:
branches: [master]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Dagger CLI
run: |
curl -fsSL https://dl.dagger.io/dagger/install.sh | BIN_DIR="$HOME/.local/bin" sh
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- name: Run CI (Dagger)
run: dagger call ci