mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 07:04:29 +00:00
e62f32c16b
This was pretty annoying on rust release day, because it introduced new warnings. Specifically 1.73 introduced a spurious one about PartialOrd and Ord disagreeing when both were in fact #derive-d.
34 lines
802 B
YAML
34 lines
802 B
YAML
name: Rust checks
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
rustfmt:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- name: cargo fmt
|
|
run: cargo fmt --check --all
|
|
|
|
clippy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- name: Install deps
|
|
run: |
|
|
sudo apt install gettext libncurses5-dev libpcre2-dev python3-pip tmux
|
|
sudo pip3 install pexpect
|
|
- name: cmake
|
|
run: |
|
|
cmake -B build
|
|
- name: cargo clippy
|
|
# This used to have --deny=warnings, but that turns rust release day
|
|
# into automatic CI failure day, so we don't do that.
|
|
run: cargo clippy --workspace --all-targets
|