Merge pull request #2 from isosafrasaurus/main #78
This file contains hidden or 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: Pytest | |
| # workflow triggered by any push on any branch | |
| on: [push] | |
| jobs: | |
| build: | |
| name: Pytest in Pipenv # runs on the latest Ubuntu | |
| runs-on: ubuntu-latest # runs within your Docker container | |
| container: | |
| image: docker://ingeborggjerde/graphnics:main # checkout your code from your repository | |
| # and runs pytest in your pipenv environment | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Test with pytest | |
| run: | | |
| python3 -m pytest tests/ |