Skip to content

Commit

Permalink
Test editable enviroment with different os and py
Browse files Browse the repository at this point in the history
  • Loading branch information
unna97 committed Oct 27, 2023
1 parent fcab3dc commit d866b38
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Tests

on: [pull_request, workflow_dispatch]

jobs:
test-editable-install:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install editable
run: |
pip install -e .

0 comments on commit d866b38

Please sign in to comment.