0.5.0 #44
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: Test and Release | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
Quality: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8.15" | |
- name: Configure poetry & Install dependencies | |
run: | | |
sudo apt-get install poppler-utils | |
python -m pip install --upgrade pip | |
pip install poetry && poetry install | |
- name: View poetry version | |
run: poetry --version | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
poetry run flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Security Analysis with bandit | |
run: | | |
# stop pipeline if level 3 vulnerability found | |
poetry run bandit -r -lll ./pdf2dcm ./tests | |
- name: Test with pytest | |
run: | | |
poetry run pytest -v tests --cov=./pdf2dcm --cov-report=xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: ./coverage/reports/ | |
fail_ci_if_error: true | |
files: ./coverage.xml,./coverage1.xml,./coverage2.xml | |
flags: pytest | |
name: codecov-umbrella | |
verbose: true | |
Release: | |
needs: Quality | |
# https://github.community/t/how-do-i-specify-job-dependency-running-in-another-workflow/16482 | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, 'chore(release):') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8.15 | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Python Semantic Release | |
uses: python-semantic-release/python-semantic-release@v8.0.0 | |
with: | |
github_token: ${{ secrets.GH_TOKEN }} | |
repository_username: ${{ secrets.PYPI_USER }} | |
repository_password: ${{ secrets.PYPI_SECRET }} |