Skip to content

Installing libgtk-3-dev on Ubuntu #142

Installing libgtk-3-dev on Ubuntu

Installing libgtk-3-dev on Ubuntu #142

Workflow file for this run

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