Files
boco/.github/workflows/ci.yml
T
marvin 9080317b6c
CI / build (push) Failing after 1s
ci: specify runs-on amd64
2026-08-25 19:59:05 +00:00

25 lines
498 B
YAML

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: amd64
steps:
- 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