Commit modified build versions in case they are different. #109
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: 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 .[test,sentiment] | |
- name: pytest -W error | |
run: | | |
pytest -W error --run_sentiment |