add feedbacks #416
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: Python application | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
# ruff: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: chartboost/ruff-action@v1 | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9" | |
cache: 'pip' # caching pip dependencies | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
python -m nltk.downloader omw-1.4 | |
python -m nltk.downloader punkt | |
# - name: Install ruff and pre-commit | |
# run: | | |
# pip install ruff pre-commit | |
# | |
# - name: precommit hook | |
# run: | | |
# pre-commit install | |
# pre-commit run --all-files | |
# - name: Lint with ruff | |
# run: | | |
# ruff check . --select F401 --select F403 --quiet | |
- name: Test with pytest | |
run: | | |
pytest tests |