Rename workflow file
Because build is a bad name for a workflow that doesn't build anything
This commit is contained in:
parent
a04d3d7f47
commit
c198a676ea
1 changed files with 0 additions and 0 deletions
|
@ -1,33 +0,0 @@
|
|||
---
|
||||
on: [push]
|
||||
|
||||
name: CI
|
||||
|
||||
jobs:
|
||||
formatting:
|
||||
name: Formatting
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Rust
|
||||
uses: https://github.com/dtolnay/rust-toolchain@nightly
|
||||
with:
|
||||
components: rustfmt
|
||||
- name: Check Rust formatting
|
||||
run: cargo fmt --all -- --check
|
||||
|
||||
clippy:
|
||||
name: Clippy
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up Rust
|
||||
uses: https://github.com/dtolnay/rust-toolchain@nightly
|
||||
with:
|
||||
components: clippy
|
||||
- name: Install dependencies
|
||||
uses: ./.forgejo/actions/install-system-libraries
|
||||
- name: Run Clippy
|
||||
run: cargo clippy -- -D warnings
|
Loading…
Add table
Add a link
Reference in a new issue