Skip to content

Updated tooltip images, generalization for idempotence and complement #233

Updated tooltip images, generalization for idempotence and complement

Updated tooltip images, generalization for idempotence and complement #233

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