Skip to content

Fix reference to schema #96

Fix reference to schema

Fix reference to schema #96

Workflow file for this run

name: Warnings
on: [push, pull_request]
jobs:
test:
name: pytest warnings
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.12'
steps:
- uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install deps
run: |
pip install -r requirements.txt -r requirements-dev.txt
- name: pytest -W error
run: |
pytest -W error --run_sentiment