notif-picker/.forgejo/workflows/ci.yml
Austin Schaefer 4e65ef3843
Some checks failed
CI / ci (push) Failing after 20m50s
CI / ci (pull_request) Failing after 1h20m38s
Fix CI job: run on default node image instead of rust:latest
The rust:latest container has no Node.js, but actions/checkout@v4 and
actions/cache@v4 are JS actions that require it to execute at all,
so the job failed before any cargo/fmt steps ran. Use the default
docker runner image and install the Rust toolchain via rustup instead.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-29 12:25:09 +02:00

36 lines
942 B
YAML

name: CI
on:
push:
pull_request:
jobs:
ci:
runs-on: docker
steps:
- uses: actions/checkout@v4
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/bin
target
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Install Rust toolchain
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal --component clippy --component rustfmt
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
- name: Install cargo-make and cargo-audit
run: |
for crate in cargo-make cargo-audit; do
command -v "$crate" >/dev/null 2>&1 || cargo install "$crate"
done
- name: Run CI checks
run: cargo make ci