Skip to content

Removed comma necessity after quantifier, fixed formatting errors, fixed old tests to pass with new changes #210

Removed comma necessity after quantifier, fixed formatting errors, fixed old tests to pass with new changes

Removed comma necessity after quantifier, fixed formatting errors, fixed old tests to pass with new changes #210

Workflow file for this run

name: Checks
on: [push, pull_request]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- name: Pull source
uses: actions/checkout@v3
- name: Update Rust
run: rustup update
- name: Run cargo test
run: cargo test
env:
# Deny compile warnings
RUSTFLAGS: -D warnings
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- name: Pull source
uses: actions/checkout@v3
- name: Update Rust
run: rustup update
- name: Run cargo fmt
run: cargo fmt --all -- --check
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- name: Pull source
uses: actions/checkout@v3
- name: Update Rust
run: rustup update
- name: Run cargo clippy
run: cargo clippy
env:
# Deny warnings
RUSTFLAGS: -D warnings