Skip to content

feat(extractor): include full schema in param_input and bump version to 0.8.18 #38

feat(extractor): include full schema in param_input and bump version to 0.8.18

feat(extractor): include full schema in param_input and bump version to 0.8.18 #38

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install PDM
run: |
pip install pdm
- name: Install dependencies
run: |
cd runner
pdm install
- name: Run tests
run: |
cd runner
pdm run test
- name: Run linting
run: |
cd runner
pdm run lint
continue-on-error: true