Translations update from Hosted Weblate #12
Workflow file for this run
This file contains hidden or 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
| # PR CI — compile and test with project MSRV (rust-toolchain.toml) | |
| name: CI | |
| on: | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test-linux: | |
| name: Test (Linux) | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libgtk-3-dev libxcb-shape0-dev libxcb-xfixes0-dev libfontconfig1-dev | |
| - name: Install Rust (MSRV from rust-toolchain.toml) | |
| uses: dtolnay/rust-toolchain@1.92.0 | |
| - name: cargo check | |
| run: cargo check --locked | |
| - name: cargo test | |
| run: cargo test --locked | |
| test-windows: | |
| name: Test (Windows) | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Rust (MSRV from rust-toolchain.toml) | |
| uses: dtolnay/rust-toolchain@1.92.0 | |
| - name: cargo check | |
| run: cargo check --locked | |
| - name: cargo test | |
| run: cargo test --locked |