Skip to content

[ci] Add basic regression test to PRs #1

[ci] Add basic regression test to PRs

[ci] Add basic regression test to PRs #1

Workflow file for this run

name: Run Regression Tests
on:
on:

Check failure on line 5 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 5
pull_request:
jobs:
regressions:
runs-on: ubuntu-latest
steps:
- name: Check out Repository
uses: actions/checkout@v3
- name: Setup Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install Python Dependencies
run: |
pip3 install .
- name: Run Regression Tests
working-directory: test
run: |
./convert_html.sh
- name: Check Results
run: |
git diff-index --quiet --cached HEAD -- || (echo "Changes detected!" && exit 1)