mirror of
https://codeberg.org/dwl/dwl.git
synced 2025-10-27 18:24:16 +00:00
30 lines
752 B
YAML
30 lines
752 B
YAML
name: Test all Patches
|
|
run-name: Test all Patches for ${{ github.event.repository.updated_at }}
|
|
on:
|
|
push:
|
|
gollum: # on wiki edit
|
|
jobs:
|
|
start-action:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "This was automatically triggered by a ${{ github.event_name }} event."
|
|
|
|
- name: Check out main
|
|
uses: actions/checkout@v4
|
|
with:
|
|
path: src-dir
|
|
|
|
- name: Check out Wiki
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: ${{ github.repository }}.wiki
|
|
path: wiki-dir
|
|
|
|
- name: List files in the repository
|
|
run: |
|
|
ls ${{ github.workspace }}
|
|
ls
|
|
|
|
- name: Run Tests
|
|
run: ./src-dir/.github/workflows/testPatches.sh ./src-dir ./wiki-dir
|