Skip to content

refact(codebase)!: move internal logic to lib #57

refact(codebase)!: move internal logic to lib

refact(codebase)!: move internal logic to lib #57

Workflow file for this run

name: Rust
on:
push:
branches: ["main"]
paths:
- '**/*.rs'
- 'src/**/*'
- 'Cargo.toml'
- 'Cargo.lock'
pull_request:
paths:
- '**/*.rs'
- 'src/**/*'
- 'Cargo.toml'
- 'Cargo.lock'
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install Rust
uses: dtolnay/rust-toolchain@stable
- name: cargo fmt
run: cargo fmt --all --check
- name: cargo clippy
run: |
cargo clippy -- -Dwarnings
cargo clippy --release -- -Dwarnings
build:
runs-on: ubuntu-latest
needs: check
steps:
- uses: actions/checkout@v4
- name: Build
run: |
cargo build --verbose
cargo build --release --verbose
test:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Test
run: |
cargo test
cargo test --release
cargo test --doc