Files
boco/.gitea/workflows/ci.yml
T
marvin 40f1dbbf99
CI / build (push) Failing after 0s
ci: install node before checkout
2026-08-25 20:01:53 +00:00

27 lines
594 B
YAML

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: amd64
steps:
- name: Install node
run: apt-get update && apt-get install -y nodejs npm || true
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: cargo check
run: cargo check
- name: cargo clippy
run: cargo clippy -- -D warnings
- name: cargo test
run: cargo test
- name: cargo fmt --check
run: cargo fmt -- --check