Skip to content

chore: remove unused crontab #267

chore: remove unused crontab

chore: remove unused crontab #267

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 }}