Make more Opcodes
hold a FieldType
#84
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: 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 |