Skip to content

Add check on stopping on different days than starting #36

Add check on stopping on different days than starting

Add check on stopping on different days than starting #36

Workflow file for this run

name: check-pr
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose --release
- name: Run tests
run: cargo test --verbose
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check format
run: cargo fmt -- --check
- name: Check clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Check coverage
run: cargo llvm-cov --all-features --workspace