Skip to content

Make the data validation part of the conversion step #20

Make the data validation part of the conversion step

Make the data validation part of the conversion step #20

Workflow file for this run

name: tests
# Run on pushes and PRs; ignore updates to docs only
on:
push:
paths-ignore: ["*.md"]
branches: [main]
pull_request:
paths-ignore: ["*.md"]
branches: ["*"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- run: pip install black
- run: python -m black --check .
test:
needs: lint
strategy:
matrix:
include:
- os: windows-latest
python_version: "3.10"
- os: macos-latest
python_version: "3.10"
- os: ubuntu-latest
python_version: "3.10"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
cache: "pip"
- run: pip install -r requirements.txt
- run: python -m pytest -s