From 0b6faa613db1f451af1b6d0fac4a341e79eee81b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Tue, 1 Nov 2022 15:26:15 +0100 Subject: [PATCH] Install bsdtar in the CI The recent update to Ubuntu 20.04 from 18.04 resulted in bsdtar being dropped from the CI environment. This reduces our test coverage, so let's install it again. --- .github/workflows/testing.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 07579046a..7010e369e 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -41,5 +41,7 @@ jobs: with: ruby-version: ${{matrix.ruby}} bundler-cache: true + - name: install dependencies + run: sudo apt -y install libarchive-tools - name: Run Tests run: bundle exec rake test:unit