Skip to content

switch to cronsim for cron parsing #42

switch to cronsim for cron parsing

switch to cronsim for cron parsing #42

Workflow file for this run

name: tox
on: [push, pull_request]
jobs:
tox:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.4.18"
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --extra test
- name: Run tests
run: uv run tox -e py