Testing pipeline stuff
This commit is contained in:
parent
02cd8d9d3a
commit
38ad3ca02a
1 changed files with 27 additions and 0 deletions
27
.forgejo/workflows/test.yml
Normal file
27
.forgejo/workflows/test.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: git.agaric.com/agaric/deploycontainer:0.0.5
|
||||||
|
env:
|
||||||
|
COMPOSER_IGNORE_PLATFORM_REQS: 1
|
||||||
|
COMPOSER_ARGS: "install --no-dev --no-progress --no-interaction --no-scripts --optimize-autoloader"
|
||||||
|
steps:
|
||||||
|
- name: checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: inspect environment
|
||||||
|
shell: "bash --noprofile --norc -exo pipefail {0}"
|
||||||
|
run: |
|
||||||
|
env
|
||||||
|
jq . - <<'EOF'
|
||||||
|
${{ toJSON(github) }}
|
||||||
|
EOF
|
||||||
|
jq . - <<'EOF'
|
||||||
|
${{ toJSON(forge) }}
|
||||||
|
EOF
|
||||||
|
jq . - <<'EOF'
|
||||||
|
${{ toJSON(secrets) }}
|
||||||
|
EOF
|
Loading…
Add table
Add a link
Reference in a new issue