Skip to content

Initial attempt at CI #1

Initial attempt at CI

Initial attempt at CI #1

Workflow file for this run

---
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy, rustfmt
rustflags: ""
- run: cargo fmt --check
- run: cargo clippy
- run: cargo build --release