Skip to content

Merge pull request #2 from tofarr/vs_code_and_python_3_12_support #15

Merge pull request #2 from tofarr/vs_code_and_python_3_12_support

Merge pull request #2 from tofarr/vs_code_and_python_3_12_support #15

Workflow file for this run

name: Quality
on: push
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.X
uses: actions/setup-python@v4
with:
python-version: "3.X"
- name: Install black
run: python -m pip install --upgrade pip black
- name: black
run: black . --check
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.X
uses: actions/setup-python@v4
with:
python-version: "3.X"
- name: Install pytest code coverage
run: python -m pip install ".[dev]"
- name: testcoverage
run: python -m pytest -n auto --cov-report=term-missing --cov=tests --cov=schemey --cov=marshy_config_schemey --cov=schemey_config_default --cov-fail-under=100
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.X
uses: actions/setup-python@v4
with:
python-version: "3.X"
- name: Install pylint
run: python -m pip install ".[dev]"
- name: lint
run: pylint marshy_config_schemey schemey schemey_config_default