Skip to content

Commit

Permalink
pytest action
Browse files Browse the repository at this point in the history
  • Loading branch information
eagmon committed Sep 29, 2023
1 parent 2622e80 commit 7b579c4
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Modified from GitHub Actions template

name: Tests

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
convert:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@main
with:
ref: main
fetch-depth: 0 # Fetch all history to have access to the gh-pages branch

- name: Set up Python
uses: actions/setup-python@main
with:
python-version: 3.x

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install nbconvert
- name: Test with pytest
run: |
pytest --cov=process_bigraph

0 comments on commit 7b579c4

Please sign in to comment.