Skip to content

Update 1.0.0 (massive rewrite) #246

Update 1.0.0 (massive rewrite)

Update 1.0.0 (massive rewrite) #246

Workflow file for this run

name: CI-CD
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
environment: testing
name: Unit Testing
steps:
- uses: actions/checkout@v4
- name: Run cargo test
run: cargo test --verbose --all-features -- --no-capture
clippy:
runs-on: ubuntu-latest
name: Clippy Linting Checks
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-features -- -D warnings
fmt:
runs-on: ubuntu-latest
name: Formatting Checks
steps:
- uses: actions/checkout@v4
- name: Run cargo fmt
run: cargo fmt --check