Skip to content

Translations update from Hosted Weblate #12

Translations update from Hosted Weblate

Translations update from Hosted Weblate #12

Workflow file for this run

# 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