Skip to content

Add Alternative LC3 Executor and I/O Implementations #15

Add Alternative LC3 Executor and I/O Implementations

Add Alternative LC3 Executor and I/O Implementations #15

Workflow file for this run

name: clippy
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
clippy:
permissions:
contents: read
security-events: write
actions: read
runs-on: ubuntu-latest
environment:
name: ${{ github.ref_name != 'main' && 'testing' || 'unrestricted' }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Install clippy utils
run: cargo install clippy-sarif sarif-fmt
- name: Run clippy
run:
cargo clippy
--all-features
--message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
continue-on-error: true
- name: Upload analysis results to GitHub
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: rust-clippy-results.sarif
wait-for-processing: true