Adding a test version of addbatchstatus #281
Workflow file for this run
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: pytest | |
"on": | |
push: | |
branches: | |
- main # Set a branch to deploy | |
pull_request: | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Running pytest | |
run: | | |
python --version | |
python -m pip install --quiet --no-cache-dir --upgrade poetry | |
poetry install | |
poetry run python -m pytest |