Merge pull request #481 from swirlai/fix-DS-643 #255
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: Unit Tests | |
on: | |
push: | |
# only trigger on branches, not on tags | |
branches: 'develop' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
cache: 'pip' # caching pip stuff | |
- name: Run Install Swirl | |
run: ./install.sh | |
- name: Run Install Tests Swirl | |
run: ./install-test.sh | |
- name: Run pytest unit tests | |
run: pytest |