Sort channel list output #3
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: CI | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
tags: ["*"] | |
jobs: | |
rust: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | Cancel previous runs | |
uses: styfle/[email protected] | |
- name: Setup | Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | Apt packages | |
run: sudo apt-get update | |
- name: Setup | Rust toolchain | |
uses: dtolnay/[email protected] | |
with: | |
components: clippy, rustfmt | |
- name: Setup | Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Hygiene | Formatting | |
run: cargo fmt -- --check | |
- name: Hygiene | Clippy | |
run: cargo clippy -- -Dclippy::all -Dwarnings |