Fix extra messages in profile extract bug. #234
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: pyRACF Linting & Unit Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.10", "3.11"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
run: curl -sSL https://install.python-poetry.org | python3 - | |
- name: Show Poetry Environment Info | |
run: poetry env info | |
- name: Install Development Dependencies | |
run: poetry install --no-root | |
- name: Flake8 | |
run: poetry run flake8 . | |
- name: Pylint | |
run: poetry run pylint --recursive=y . | |
- name: Unit Test | |
run: poetry run coverage run tests/test_runner.py | |
- name: Code Coverage | |
run: poetry run coverage report -m |