Implement GUI #11
Workflow file for this run
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: Rust | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- '**.*.rs' | |
- 'src/**' | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
pull_request: | |
paths: | |
- '**/*.rs' | |
- 'src/**' | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install libpango | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Build | |
run: | | |
cargo build --verbose | |
cargo build --release --verbose | |
check: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Run cargo clippy | |
run: | | |
cargo clippy -- -Dwarnings | |
cargo clippy --release -- -Dwarnings | |
- name: Run cargo fmt | |
run: cargo fmt --all --check |