format-patch: if patchdir is a symlink, keep it intact #116
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run shellcheck | |
run: shellcheck -S warning umpf | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install Meson & Ninja | |
run: pip install meson ninja | |
- name: Setup builddir | |
run: meson setup builddir/ | |
- name: Run tests | |
run: meson test -C builddir/ | |
- name: Dump test log | |
if: failure() | |
run: cat builddir/meson-logs/testlog.txt |