methods for working with pp-v202-classes #297
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ main, develop ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ windows-latest, macOS-latest, ubuntu-latest ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Initialize Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install pyphetools | |
run: | | |
python3 -m pip install --editable .[test] | |
- name: Run all tests | |
run: | | |
pytest |