ci-pytest #44
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: ci-pytest2 | |
# Fast tests with cached antspy build designed to test changes in the python code | |
# Builds on Linux only, with a single python version | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
env: | |
# Updates or changes to this, or the runner OS or arch will invalidate the cache | |
python_version: "3.10" # Python version to use for testing - update when needed | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v5 | |
- name: Install package | |
run: python -m pip -v install . |