Skip to content

feat(take): ALL functionality #70

feat(take): ALL functionality

feat(take): ALL functionality #70

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:
env:
CARGO_TERM_COLOR: always
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 --lib
cargo test --lib --release
cargo test --doc
cargo test --doc --release