Skip to content

Commit

Permalink
Merge branch 'ankith26-gsoc' of https://github.com/ankith26/PyElastica
Browse files Browse the repository at this point in the history
…into ankith26-gsoc
  • Loading branch information
skim0119 committed Jul 12, 2024
2 parents 47952a7 + 4bd8a3a commit bcb7ad8
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/elasticapp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: elasticapp (Elastica++ based backend) tests

# trigger run only on changes to the backend folder.
on:
push:
paths:
- backend/**
pull_request:
paths:
- backend/**

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-latest] # , macos-latest]

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}

- name: Install elasticapp backend
run: pip install ./backend -v

- name: Run elasticapp tests
run: |
python -m pip install pytest
pytest backend/tests

0 comments on commit bcb7ad8

Please sign in to comment.