Temporarily disable lints for brevity
This commit is contained in:
parent
e0131a1bfa
commit
b70b9a716a
1 changed files with 24 additions and 24 deletions
|
@ -4,31 +4,31 @@ on: [push]
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
formatting:
|
# formatting:
|
||||||
name: Formatting
|
# name: Formatting
|
||||||
runs-on: ubuntu-22.04
|
# runs-on: ubuntu-22.04
|
||||||
steps:
|
# steps:
|
||||||
- name: Checkout
|
# - name: Checkout
|
||||||
uses: actions/checkout@v4
|
# uses: actions/checkout@v4
|
||||||
- name: Set up Rust
|
# - name: Set up Rust
|
||||||
uses: https://github.com/dtolnay/rust-toolchain@stable
|
# uses: https://github.com/dtolnay/rust-toolchain@stable
|
||||||
with:
|
# with:
|
||||||
components: rustfmt
|
# components: rustfmt
|
||||||
- name: Check Rust formatting
|
# - name: Check Rust formatting
|
||||||
run: cargo fmt --all -- --check
|
# run: cargo fmt --all -- --check
|
||||||
|
|
||||||
clippy:
|
# clippy:
|
||||||
name: Clippy
|
# name: Clippy
|
||||||
runs-on: ubuntu-22.04
|
# runs-on: ubuntu-22.04
|
||||||
steps:
|
# steps:
|
||||||
- name: Checkout
|
# - name: Checkout
|
||||||
uses: actions/checkout@v4
|
# uses: actions/checkout@v4
|
||||||
- name: Set up Rust
|
# - name: Set up Rust
|
||||||
uses: https://github.com/dtolnay/rust-toolchain@stable
|
# uses: https://github.com/dtolnay/rust-toolchain@stable
|
||||||
with:
|
# with:
|
||||||
components: clippy
|
# components: clippy
|
||||||
- name: Run Clippy
|
# - name: Run Clippy
|
||||||
run: "echo 'pretend i ran'" # cargo clippy -- -D warnings
|
# run: cargo clippy -- -D warnings
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build (and tests, for now)
|
name: Build (and tests, for now)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue