Skip to content

Merged to main by mmzdouc #3

Merged to main by mmzdouc

Merged to main by mmzdouc #3

Workflow file for this run

name: CI Pipeline (PRs and pushes main)
run-name: Merged to main by ${{ github.actor }}
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install package with pip
run: |
python -m pip install --upgrade pip
pip install .
- name: Run tests
run: pytest