Installing libgtk-3-dev on Ubuntu #142
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
name: Checks | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
name: Test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: All targets checks | |
run: cargo check --workspace --all-targets | |
- name: Clippy checks | |
run: cargo clippy --workspace --all-targets --all-features -- -D warnings -W clippy::all | |
- name: Documentation tests | |
run: cargo test --workspace --doc | |
- name: All features for all targets tests | |
run: cargo test --workspace --all-targets --all-features | |
ubuntu-test: | |
name: Test on ubuntu-latest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install system dependencies | |
run: sudo apt-get update && sudo apt-get install -y libatk1.0-dev librust-atk-dev libgtk-3-dev | |
- uses: actions/checkout@v2 | |
- name: All targets checks | |
run: cargo check --workspace --all-targets | |
- name: Clippy checks | |
run: cargo clippy --workspace --all-targets --all-features -- -D warnings -W clippy::all | |
- name: Documentation tests | |
run: cargo test --workspace --doc | |
- name: All features for all targets tests | |
run: cargo test --workspace --all-targets --all-features |