Skip to content

Commit

Permalink
ci: install system dependencies explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Sep 22, 2024
1 parent 7f607d6 commit 53540af
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,16 @@ jobs:
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y -V \
liblibgirepository1.0-dev \
libwebkit2gtk-4.0-dev \
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies to build gems
run: |
sudo apt update
bundle install
bundler-cache: true
- name: Test
# TODO: No test
if: |
Expand Down

0 comments on commit 53540af

Please sign in to comment.