Skip to content

Issue 469: Semantically invalid IR statements due to bad Subregister Substitution #1140

Issue 469: Semantically invalid IR statements due to bad Subregister Substitution

Issue 469: Semantically invalid IR statements due to bad Subregister Substitution #1140

name: codestyle-checks
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
RUSTDOCFLAGS: -Dwarnings
jobs:
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D clippy::all -D missing_docs
doc:
name: Rustdoc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rust-docs
- uses: actions-rs/cargo@v1
with:
command: doc
args: --no-deps --document-private-items