Rework server list implementation #348
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
on: [push, pull_request] | |
name: Run checks | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install packages | |
run: sudo apt-get update && sudo apt-get install libgtk-3-dev gcc-mingw-w64 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
targets: x86_64-unknown-linux-gnu, x86_64-pc-windows-gnu | |
components: clippy, rustfmt | |
- name: Get versions | |
run: | | |
cargo fmt --version | |
cargo clippy --version | |
- uses: actions-rs/clippy-check@v1 | |
name: Check clippy | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
args: --all-features --all-targets -- -D warnings | |
- name: Check rustfmt | |
run: cargo fmt -- --check |