Skip to content

Enhance README with verification matrix and details #52

Enhance README with verification matrix and details

Enhance README with verification matrix and details #52

Workflow file for this run

name: CI Pipeline Python
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Run Pytest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-schema jsonschema requests
- name: Run tests
run: pytest --ignore=week_003