CI: build: add workflow_dispatch
Some checks failed
/ build (push) Failing after 27s

This commit is contained in:
phil 2024-10-28 18:33:23 +01:00
parent 87cdbbc271
commit 5e8abadb07

View file

@ -1,5 +1,12 @@
on:
push:
workflow_dispatch:
inputs:
verbose:
description: "Verbose"
required: false
default: false
type: boolean
jobs:
build:
@ -21,6 +28,11 @@ jobs:
- name: Run basic test (bootstrap)
run: pytest -s tests/basic.py
- name: Echo env
if: ${{ inputs.verbose }}
run: |
echo '${{ toJSON(env) }}'
- name: Log in to container registry
uses: actions/podman-login@v1
with: