Add 2024 Oct. and Nov. Finalize terms #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
rust_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: clippy, rustfmt | |
- name: Check Rust formatting | |
run: | | |
cargo fmt -- --check | |
- name: Run Clippy | |
run: | | |
cargo clippy -- -D warnings | |
- name: Check term sorting | |
run: | | |
cargo build | |
cargo run --bin terms -- --check |