Skip to content

build(deps-dev): bump faker from 24.3.0 to 24.4.0 #334

build(deps-dev): bump faker from 24.3.0 to 24.4.0

build(deps-dev): bump faker from 24.3.0 to 24.4.0 #334

Workflow file for this run

name: Python application
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: pipx install poetry
- name: Install dependencies
run: |
poetry install
poetry run pre-commit install
- run: poetry run pre-commit run -a
- run: poetry run pytest --cov=cronjobs
- run: poetry run coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}