.forgejo/workflows/demo.yaml aktualisiert
Some checks failed
/ Test (push) Successful in 2s
/ Checkout (push) Failing after 12s

This commit is contained in:
david 2024-07-22 00:32:46 +02:00
parent 02acb272af
commit 98af446b98

View file

@ -1,6 +1,7 @@
on: [push] on: [push]
jobs: jobs:
test: test:
name: Test
runs-on: docker runs-on: docker
steps: steps:
- run: echo All Good - run: echo All Good
@ -16,9 +17,11 @@ jobs:
key: ${{ runner.os }}-repository-${{ github.sha }} key: ${{ runner.os }}-repository-${{ github.sha }}
restore-keys: | restore-keys: |
${{ runner.os }}-repository- ${{ runner.os }}-repository-
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
path: repository path: repository
submodules: recursive submodules: recursive
- run: cd /repository && docker build .