Skip to content

feat: Remove tarpaulin job #26

feat: Remove tarpaulin job

feat: Remove tarpaulin job #26

Workflow file for this run

name: Rust - Quality
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
name: "Clippy"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup component add clippy
- run : cargo clippy
tests:
name: "Tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose