Skip to content

Add stronger typing for opcodes with classinfo #89

Add stronger typing for opcodes with classinfo

Add stronger typing for opcodes with classinfo #89

Workflow file for this run

name: Lints
on:
push:
branches:
- main
pull_request:
jobs:
formatting:
name: Check formatting
runs-on: ubuntu-latest
steps:
- name: Get latest stable Rust
run: rustup toolchain install stable --profile default
- name: Check out source
uses: actions/checkout@v2
- name: Check formatting
run: cargo fmt -v -- --check
clippy:
name: Run clippy checks
runs-on: ubuntu-latest
steps:
- name: Get latest stable Rust
run: rustup toolchain install stable --profile minimal
- name: Get clippy
run: rustup component add clippy
- name: Check out source
uses: actions/checkout@v2
- name: Check clippy lints
run: cargo clippy --all --no-deps