Merge pull request #6 from vanderhe/versionBump #27
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v1 | |
| with: | |
| python-version: '3.9' | |
| - name: Install requirements | |
| run: pip3 install pytest sphinx fortnet-python | |
| - name: Setup up PYTHONPATH | |
| run: echo "PYTHONPATH=${PWD}/src" >> $GITHUB_ENV | |
| - name: Run regression tests | |
| run: python3 -m pytest |