The go/pytest tests were broken because the reusable workflow is not quite the right construct. We need the "composite action".
13 lines
313 B
YAML
13 lines
313 B
YAML
name: Install common test dependencies
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
workflow_call:
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install common test dependencies
|
|
shell: bash
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install -y libgpgme-dev libbtrfs-dev libdevmapper-dev podman
|