ki18n-rs/.github/workflows/rust.yml

52 lines
1.1 KiB
YAML
Raw Normal View History

2021-11-01 12:34:34 +00:00
name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
2021-11-01 16:05:16 +00:00
env:
QT_QPA_PLATFORM: offscreen
strategy:
matrix:
os: [ubuntu-latest]
qt: [5.15.2]
rust: [stable, nightly]
runs-on: ${{ matrix.os }}
2021-11-01 12:34:34 +00:00
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v1
with:
key: rust_cache
- name: Cache Qt
id: cache-qt
uses: actions/cache@v1
with:
path: ../Qt
key: QtCache-${{ runner.os }}-${{ matrix.qt }}
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
version: ${{ matrix.qt }}
cached: ${{ steps.cache-qt.outputs.cache-hit }}
- name: Install KF5i18n
run: sudo apt install libkf5i18n-dev
2021-11-01 12:34:34 +00:00
- name: Build
run: cargo build --verbose --all-features
2021-11-01 12:34:34 +00:00
- name: Run tests
run: cargo test --verbose --all-features