Skip to content

Delete .github/workflows directory #2

Delete .github/workflows directory

Delete .github/workflows directory #2

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
workflow_call:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 12
matrix:
os: [macos-latest, ubuntu-latest] #, ubuntu-latest, windows-latest
python-version: ["3.9", "3.10"] #"3.7", "3.8", "3.10", , "3.11"
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pip dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -e .
- name: Test with pytest
run: pytest