Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Merge pull request #22 from IO-Jaegers/version_1_0_0 #68

Merge pull request #22 from IO-Jaegers/version_1_0_0

Merge pull request #22 from IO-Jaegers/version_1_0_0 #68

Workflow file for this run

name: Python package
on:
push:
branches: [ "main", "development" ]
pull_request:
branches: [ "main", "test", "testing", "publish", "published"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
pytest