Skip to content

Implement GUI

Implement GUI #11

Workflow file for this run

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