Skip to content

Merge pull request #14 from Ivy-Interactive/tendril/00259-RemoveUnuse… #30

Merge pull request #14 from Ivy-Interactive/tendril/00259-RemoveUnuse…

Merge pull request #14 from Ivy-Interactive/tendril/00259-RemoveUnuse… #30

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --workspace
- name: Test
run: cargo test --workspace
- name: Clippy
run: cargo clippy --workspace -- -D warnings
- name: Format check
run: cargo fmt --all -- --check