Add the ability to view CI checks via Rox #98
Workflow file for this run
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] | |
paths-ignore: [README.md] | |
tags: ["*"] | |
pull_request: | |
branches: [main] | |
paths-ignore: [README.md] | |
jobs: | |
Suite: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: | | |
rustup update | |
rustup component add clippy | |
cargo install cargo-nextest | |
- name: Build | |
run: cargo build | |
- name: Format | |
run: cargo run task fmt | |
- name: Lint | |
run: cargo run task clippy-ci | |
- name: Test | |
run: cargo run task test |