Skip to content

Upgrade python version in release pipline. #27

Upgrade python version in release pipline.

Upgrade python version in release pipline. #27

Workflow file for this run

name: Push
on: [push]
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ['3.11']
poetry-version: ['1.4.2']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2.1.4
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
code-quality:
strategy:
fail-fast: false
matrix:
python-version: ['3.11']
poetry-version: ['1.4.2']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2.1.4
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install
- name: Run black
run: poetry run black . --check
# - name: Run isort
# run: poetry run isort . --check-only --profile black
# - name: Run flake8
# run: poetry run flake8 .
- name: Run mypy
run: poetry run mypy .
- name: Run bandit
run: poetry run bandit .
- name: Run safety
run: poetry run safety check
- name: Check for acceptable licenses
run: poetry run pip-licenses --allow-only="MIT License;BSD License;Python Software Foundation License;Apache Software License;Mozilla Public License 2.0 (MPL 2.0)"