moves readme to the root #5
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: PyTest | |
on: | |
workflow_call: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- 'render_engine_markdown/**' | |
jobs: | |
test-against-matrix: | |
# Only test all the supported versions when a pull request is made or the workflow is called | |
if: ${{github.event_name == 'workflow_call'}} || ${{github.event_name == 'pull_request'}} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.10', '3.11'] | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install requirements | |
run: | | |
python -m pip install -e .[dev] | |
- name: Run tests | |
run: | | |
python -m pytest | |
test-against-latest: | |
# Always run against the latest version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Install requirements | |
run: | | |
python -m pip install -e .[dev] | |
- name: Run tests | |
run: | | |
python -m pytest |