test-forgejo-runner/.forgejo/workflows/demo.yaml
julien.oculi 347456f004
Some checks failed
Named workflow / test (push) Failing after 7s
ci: debug curl in http and https
2024-05-06 19:42:19 +02:00

28 lines
689 B
YAML

name: Named workflow
on:
push:
branches: ["main"]
jobs:
test:
runs-on: docker
steps:
- name: Debug local net
run: curl -fsSL -vvv localhost:10001 1> /dev/null
- name: Debug local net secure
run: curl -fsSL -vvv https://git.cohabit.fr 1> /dev/null
- name: 'FIX: fetch actions/checkout@v4'
run: curl -vL --create-dirs -o /var/run/act/actions/actions-checkout@v4/dist/index.js https://raw.githubusercontent.com/actions/checkout/main/dist/index.js
- name: Setup repo
uses: actions/checkout@v4
- name: Check repo
run: ls -lah
- name: Test secrets
run: echo ${{ secrets.SSH_Key_sample }}