a11yist/.forgejo/workflows/demo.yaml
david 02acb272af
All checks were successful
/ test (push) Successful in 3s
/ Checkout (push) Successful in 11s
.forgejo/workflows/demo.yaml aktualisiert
2024-07-22 00:28:46 +02:00

24 lines
No EOL
570 B
YAML

on: [push]
jobs:
test:
runs-on: docker
steps:
- run: echo All Good
checkout:
runs-on: docker
name: Checkout
steps:
- name: Cache repository
uses: actions/cache@v4
id: cache-repository
with:
path: repository
key: ${{ runner.os }}-repository-${{ github.sha }}
restore-keys: |
${{ runner.os }}-repository-
- name: Checkout repository
uses: actions/checkout@v4
with:
path: repository
submodules: recursive