a11yist/.forgejo/workflows/demo.yaml

24 lines
570 B
YAML
Raw Normal View History

2024-07-21 23:55:43 +02:00
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