Tests of new git workflows #1
Workflow file for this run
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: Run unit tests | ||
| on: | ||
| workflow_call: | ||
| jobs: | ||
| install: | ||
| uses: install.yml | ||
| test: | ||
| steps: | ||
| # - name: Lint with flake8 | ||
| # run: | | ||
| # # stop the build if there are Python syntax errors or undefined names | ||
| # poetry run flake8 ./avstack --count --max-line-length=127 --show-source --statistics | ||
| - name: Run tests | ||
| run: | | ||
| poetry run pytest tests | ||