The job timeout was removed in the simplification of ci.yml but is important to prevent CI jobs from running indefinitely if the Dagger engine connection hangs instead of failing fast. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
390 B
YAML
16 lines
390 B
YAML
name: CI
|
|
on: [push, pull_request]
|
|
jobs:
|
|
check:
|
|
name: Full Project Check
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup Dagger Remote Engine
|
|
env:
|
|
SOPS_AGE_KEY: ${{ secrets.SOPS_AGE_KEY }}
|
|
run: scripts/setup_dagger_remote.sh
|
|
- name: Run Full Check Suite
|
|
run: task check-dagger
|