Bump black from 23.3.0 to 24.3.0 #33
Workflow file for this run
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: CI Code Checks | |
on: [pull_request] | |
jobs: | |
build: | |
name: code checks | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements_dev.txt | |
python -m nltk.downloader stopwords | |
- name: Checking formatting and analysing the code with pylint and flake8 | |
run: make lint | |
- name: Type checking with mypy | |
run: mypy --config mypy.ini -p snowball | |
- name: Running tests | |
run: make test | |
- name: Creating coverage folder | |
run: | | |
mkdir -p coverage | |
- name: Coverage Badge | |
uses: tj-actions/[email protected] | |
with: | |
output: coverage/coverage.svg | |
- name: Publish coverage report to coverage-badge branch | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: coverage-badge | |
folder: coverage | |