Merge pull request #9 from render-engine/9-pin-md2-version #9
This file contains hidden or 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'}} | ||
|
Check warning on line 15 in .github/workflows/test.yml
|
||
| 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 | ||