This commit adds a new workflow that runs the new `pytest` based integration tests inside GH actions. It also extracts a common `testdeps.yml` reusable workflow so that we do not duplicate the package list of test dependencies.
13 lines
285 B
YAML
13 lines
285 B
YAML
name: Install common test dependencies
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
install:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install common test dependencies
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install -y libgpgme-dev libbtrfs-dev libdevmapper-dev podman
|