Skip to content

add python_publish workflow #46

add python_publish workflow

add python_publish workflow #46

Workflow file for this run

name: Testing
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install .[test]
- name: 🧪 - Testing
run: |
pytest -v