This commit is contained in:
parent
87cdbbc271
commit
5e8abadb07
1 changed files with 12 additions and 0 deletions
|
@ -1,5 +1,12 @@
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
verbose:
|
||||||
|
description: "Verbose"
|
||||||
|
required: false
|
||||||
|
default: false
|
||||||
|
type: boolean
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
@ -21,6 +28,11 @@ jobs:
|
||||||
- name: Run basic test (bootstrap)
|
- name: Run basic test (bootstrap)
|
||||||
run: pytest -s tests/basic.py
|
run: pytest -s tests/basic.py
|
||||||
|
|
||||||
|
- name: Echo env
|
||||||
|
if: ${{ inputs.verbose }}
|
||||||
|
run: |
|
||||||
|
echo '${{ toJSON(env) }}'
|
||||||
|
|
||||||
- name: Log in to container registry
|
- name: Log in to container registry
|
||||||
uses: actions/podman-login@v1
|
uses: actions/podman-login@v1
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue