Code Formatting #17
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: Run Regression Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
regressions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Repository | |
uses: actions/checkout@v3 | |
- name: Check out Test Docs Repository | |
uses: actions/checkout@v3 | |
with: | |
repository: modm-ext/modm-data-test-docs | |
path: ext/test/regression | |
- 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 | |
run: | | |
make run-regression-tests | |
- name: Run Code Formatter | |
uses: chartboost/ruff-action@v1 | |
with: | |
src: "./src" | |
args: "format --check" |