Skip to content

Refactor args into separate file #55

Refactor args into separate file

Refactor args into separate file #55

Workflow file for this run

name: CI
on: [push]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (Stable)
run: curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal
- uses: actions/cache@v4
with:
path: |
~/.rustup/
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --release --locked --all-features
- name: Clippy
run: cargo clippy
- name: Run Tests
run: cargo test --release