Skip to content

Merge branch 'main' of github.com:team23/async-signals #25

Merge branch 'main' of github.com:team23/async-signals

Merge branch 'main' of github.com:team23/async-signals #25

Workflow file for this run

name: "TEST: Run pytest using tox"

Check failure on line 1 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

invalid `cron` attribute "@Weekly"
on:
push:
pull_request:
schedule:
- cron: '@weekly'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade poetry
poetry install
- name: Test with pytest
run: |
poetry run tox -e py