Skip to content

build(deps-dev): bump coverage from 7.3.1 to 7.3.2 #27

build(deps-dev): bump coverage from 7.3.1 to 7.3.2

build(deps-dev): bump coverage from 7.3.1 to 7.3.2 #27

Workflow file for this run

name: Linting
on:
push:
branches:
- main
- master
- dev
pull_request:
# schedule:
# - cron: "0 0 * * *"
env:
DEFAULT_PYTHON: "3.10"
jobs:
pre-commit:
runs-on: "ubuntu-latest"
name: Pre-commit
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python ${{ env.DEFAULT_PYTHON }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Install Python modules
run: |
pip install pre-commit
- name: Run pre-commit on all files
run: |
pre-commit run --all-files --show-diff-on-failure --color=always
tests:
runs-on: "ubuntu-latest"
name: Run tests
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3
- name: Setup Python ${{ env.DEFAULT_PYTHON }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Install requirements
run: |
pip install poetry
poetry install --with test
- name: Tests suite
run: |
poetry run pytest