Bump xilem from a1c7d74
to c3a6bd5
#172
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: "Test Suite" | |
on: | |
push: | |
branches: [ "main", "xilem" ] | |
pull_request: | |
branches: [ "main", "xilem" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
name: cargo test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# See https://github.com/actions-rust-lang/setup-rust-toolchain | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- run: cargo test --all-features | |
# Check formatting with rustfmt | |
formatting: | |
name: cargo fmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Ensure rustfmt is installed and set up problem matcher | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- name: Rustfmt Check | |
uses: actions-rust-lang/rustfmt@v1 |