Skip to content

build(deps): bump pest_derive from 2.7.7 to 2.7.8 #8

build(deps): bump pest_derive from 2.7.7 to 2.7.8

build(deps): bump pest_derive from 2.7.7 to 2.7.8 #8

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
env:
CARGO_TERM_COLOR: always
jobs:
# Run cargo test
test:
name: Test Suite
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v4
with:
save-always: true
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.toml') }}
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v9
- name: Run cargo test
run: nix develop --command cargo test
# Run cargo clippy -- -D warnings
clippy_check:
name: Clippy
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v4
with:
save-always: true
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-clippy-${{ hashFiles('**/Cargo.toml') }}
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v9
- name: Run clippy
run: nix develop --command cargo clippy -- -D warnings
# FIXME: remove when fix clippy warnings are fixed
continue-on-error: true
# Run cargo fmt --all -- --check
format:
name: Format
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v9
- name: Run cargo fmt
run: nix develop --command cargo fmt --all -- --check