Fix encoding in README.md and update package dependencies #16
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: Unit Test | |
on: [push] | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ | |
"3.9", | |
"3.10", | |
"3.11", | |
"3.12", | |
"3.13", | |
] | |
django-version: [ | |
"django>=4.2,<5.0", | |
"django>=5.0,<5.1", | |
"django>=5.1,<5.2", | |
] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install "${{ matrix.django-version }}" --quiet | |
python setup.py install | |
pip install flake8 | |
pip install coverage | |
- name: Analyze code with flake8 | |
continue-on-error: false | |
run: | | |
flake8 | |
- name: Django Unit Testing | |
id: unittest | |
continue-on-error: false | |
run: | | |
coverage run --source='.' quicktest.py django_classified | |
- name: Generate Coverage Report | |
run: | | |
coverage report --show-missing |