Skip to content

Commit

Permalink
meta: Install dependencies in CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
luleyleo committed Sep 6, 2024
1 parent fd67b49 commit 4c6251d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
env:
RUST_VERSION: 1.80.0
CARGO_TERM_COLOR: always
DEPENDENCIES: libgtk-4-dev libadwaita-1-dev build-essential

jobs:
check:
Expand All @@ -18,6 +19,9 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install dependencies
run: sudo apt install ${{ env.DEPENDENCIES }}

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand All @@ -44,6 +48,9 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install dependencies
run: sudo apt install ${{ env.DEPENDENCIES }}

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down

0 comments on commit 4c6251d

Please sign in to comment.