Skip to content

Commit

Permalink
Attempt to fix Ubuntu workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
notdanilo committed Sep 1, 2024
1 parent 4b82fb1 commit 693f44f
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macOS-latest, ubuntu-latest] #
os: [windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: All targets checks
Expand All @@ -26,3 +26,18 @@ jobs:
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
- 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

0 comments on commit 693f44f

Please sign in to comment.