Skip to content

add shields to README #16

add shields to README

add shields to README #16

Workflow file for this run

name: CI-CD
on: [push, 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
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