Skip to content

Merge pull request #9 from render-engine/9-pin-md2-version #9

Merge pull request #9 from render-engine/9-pin-md2-version

Merge pull request #9 from render-engine/9-pin-md2-version #9

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / PyTest

Workflow syntax warning

.github/workflows/test.yml (Line: 15, Col: 9): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
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