Skip to content

Commit

Permalink
Add CI (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamGallagher737 authored Nov 23, 2024
1 parent 7e08249 commit 8bd7ce7
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
on:
pull_request:
push:
branches: [main]

jobs:
cargo-test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: Leafwing-Studios/cargo-cache@v2
- name: Cargo test
run: cargo test --all --all-features

cargo-clippy:
name: Run Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- uses: Leafwing-Studios/cargo-cache@v2
- name: Cargo clippy
run: cargo clippy --all --all-features -- -D warnings

cargo-fmt:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: Cargo fmt
run: cargo fmt --all --check

0 comments on commit 8bd7ce7

Please sign in to comment.