Skip to content

Commit

Permalink
.github/worksflows: install composefs before testing
Browse files Browse the repository at this point in the history
Closes #5
  • Loading branch information
allisonkarlitskaya committed Oct 11, 2024
1 parent 28ee458 commit 1b29d4f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: install composefs
run: |
(
git clone https://github.com/containers/composefs
cd composefs
meson setup _build
ninja -C _build
ninja -C _build install
)
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
Expand Down

0 comments on commit 1b29d4f

Please sign in to comment.