Moved Pydantic models into split folder #211
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: rules engine | |
on: [push, pull_request] | |
env: | |
working-directory: rules-engine | |
defaults: | |
run: | |
working-directory: rules-engine | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up environment | |
uses: "./.github/actions/setup-rules-engine" | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Check style | |
run: | | |
isort --check . | |
black --check . | |
mypy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up environment | |
uses: "./.github/actions/setup-rules-engine" | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Check typing | |
run: | | |
mypy . | |
pytest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up environment | |
uses: "./.github/actions/setup-rules-engine" | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run tests | |
run: | | |
pytest | |
pydocstyle: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up environment | |
uses: "./.github/actions/setup-rules-engine" | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run tests | |
run: | | |
pydocstyle . |