Skip to content

enable more prs

enable more prs #88

Workflow file for this run

name: test-pr
on:
pull_request:
branches:
- main
push:
branches:
- main
- test-ci**
workflow_dispatch: # Enable workflow to be run manually
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set Up Python
uses: actions/setup-python@v2
with:
python-version: "3.7"
- name: Install daidepp
run: |
pip install -U pip
pip install -e .[dev]
- name: Test
run: |
pytest