Skip to content

Updates README.md

Updates README.md #39

Workflow file for this run

name: Test package
on:
workflow_call:
workflow_dispatch:
push:
branches: [ "main", "feature/*" ]
pull_request:
branches: [ "main" ]
jobs:
test-package:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
env:
INTERPRETER: python
PIP: python -m pip
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 local package
run: make install-local-package
- name: Test package
run: make test-package