Procstar agent program #323
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: Apsis CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Upgrade pip | |
run: pip3 install --upgrade pip 'setuptools>=61' | |
- name: Install package | |
run: pip3 install -e .[dev] | |
- name: Run Python unit tets | |
run: pytest test/unit -m "not local_ssh" | |
- name: Run Python integration tets | |
run: pytest test/int -m "not local_ssh" | |