Skip to content

Commit

Permalink
ci: add ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DonIsaac committed Sep 17, 2024
1 parent b2db6d0 commit d5c8f4c
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Boshen/setup-rust@main
with:
components: rustfmt
tools: taplo-cli
restore-cache: false
- run: taplo lint
- run: cargo fmt -- --check

lint:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: taiki-e/checkout-action@v1
- uses: Boshen/setup-rust@main
with:
cache-key: warm
components: clippy
- run: cargo clippy --all-targets --all-features --no-deps -- -D warnings

test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Boshen/setup-rust@main
with:
# warm cache factory for all other CI jobs
# cache `target` directory to avoid download crates
save-cache: ${{ github.ref_name == 'main' }}
cache-key: warm
tools: cargo-nextest

- run: cargo check --all-targets --locked
- run: cargo test --no-run
- run: cargo nextest run

0 comments on commit d5c8f4c

Please sign in to comment.