Summary
Jobs
rustfmt-nightly-check
clippy-checks
build-and-test
build-artifacts-and-run-tests (true, true, false, false, x86_64-unknown-linux-gnu)
build-artifacts-and-run-tests (true, true, false, false, x86_64-pc-windows-gnu)
build-artifacts-and-run-tests (true, true, false, false, x86_64-pc-windows-msvc)
build-artifacts-and-run-tests (true, true, false, false, aarch64-pc-windows-msvc)
build-artifacts-and-run-tests (true, true, false, false, x86_64-apple-darwin)
build-artifacts-and-run-tests (true, true, false, false, x86_64-unknown-linux-musl)
build-artifacts-and-run-tests (true, true, false, false, aarch64-unknown-linux-gnu)
build-artifacts-and-run-tests (true, true, false, false, aarch64-unknown-linux-musl)
build-artifacts-and-run-tests (true, true, false, false, armv7-unknown-linux-gnueabihf)
build-artifacts-and-run-tests (true, true, false, false, armv7-unknown-linux-musleabihf)
build-artifacts-and-run-tests (false, x86_64-unknown-linux-gnu)
build-artifacts-and-run-tests (true, x86_64-unknown-linux-gnu)
build-artifacts-and-run-tests (true, x86_64-unknown-linux-gnu)
build-artifacts-and-run-tests (false, x86_64-unknown-linux-gnu)
Workflow file for this run
This file contains hidden or 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: PR workflow
on:
pull_request:
paths-ignore:
- "**/*.md"
jobs:
rustfmt-nightly-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: "Cargo: fmt"
run: |
rustup toolchain install nightly --profile minimal -c rustfmt
cargo +nightly fmt -- --check
clippy-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: "Cargo: clippy"
run: |
rustup toolchain install stable --profile minimal -c clippy
cargo +stable clippy -- -D warnings
build-and-test:
uses: ./.github/workflows/build-artifacts-and-run-tests.yml
with:
matrix_all_combinations: false
artifact_upload_mode: none
You can’t perform that action at this time.