Skip to content

Add matrix demo (#14) #121

Add matrix demo (#14)

Add matrix demo (#14) #121

Workflow file for this run

name: Basic
on:
push:
schedule:
- cron: "0 0 1 * *" # Midnight every month (UTC)
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: .python-version
cache: pip
- name: Show python version
run: |
python --version
pip --version
- name: Install python dependencies
run: |
pip install --upgrade pip setuptools wheel
pip install --requirement requirements.txt
- name: Run test
run: pytest tests/test_basic.py