Merge pull request #48 from CS-SI/feat-metrics #39
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: Test PESTO commands | |
| on: push | |
| jobs: | |
| integration-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.9' | |
| - name: Install requirements | |
| run: | | |
| pip install -r pesto-cli/requirements.txt | |
| pip install wheel | |
| - name: Install Pesto | |
| run: make install | |
| - name: Run integration tests | |
| run: pesto-cli/integrationtests/tests-all.py | |
| - name: 'Upload Tests Artifact' | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: tests-artifact | |
| path: /tmp/pesto/tests |