Bump to v0.14.1 #1075
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
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
tags: | |
- "*" | |
name: Continuous integration | |
jobs: | |
check: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: rustup component add rustfmt | |
- name: rustfmt check | |
run: cargo fmt --all -- --check | |
clippy-lint: | |
name: Clippy lints | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: install druid dependencies | |
run: | | |
sudo apt update | |
sudo apt install libpango1.0-dev libxkbcommon-dev libxkbcommon-x11-dev | |
- run: git submodule update --init --recursive | |
- name: cargo clippy | |
run: cargo clippy --all-targets -- -D warnings | |
- name: cargo clippy --all-features | |
run: cargo clippy --all-features --all-targets -- -D warnings | |
- name: cargo doc | |
run: cargo doc --all-features --document-private-items --no-deps | |
env: | |
RUSTDOCFLAGS: -D warnings | |
test-stable: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
name: cargo test stable | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: install druid dependencies | |
run: | | |
sudo apt update | |
sudo apt install libpango1.0-dev libxkbcommon-dev libxkbcommon-x11-dev | |
if: contains(matrix.os, 'ubuntu') | |
- run: git submodule update --init --recursive | |
- name: cargo test | |
run: cargo test | |
- name: cargo test --all-features | |
run: cargo test --all-features |