Merge pull request #123 from Rosi2143/develop #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop, master ] | |
jobs: | |
setup_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Run setup of pyIndego | |
run: pip install -e ".[testing]" | |
- name: Test with pytest | |
run: pytest |