Merge pull request #379 from VOKO-Utrecht/377-upgrade-mollie #143
Workflow file for this run
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: Deployment | |
| on: | |
| push: | |
| branches: | |
| - feature/* | |
| - develop | |
| - release/* | |
| - master | |
| jobs: | |
| tests: | |
| name: Run tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup Python | |
| uses: actions/setup-python@v3 | |
| with: | |
| python-version: '3.8' | |
| - name: Install pipenv | |
| run: python -m pip install --upgrade pipenv wheel | |
| - name: Install dependencies | |
| run: pipenv install --system --dev | |
| - name: Run tests | |
| working-directory: webapp | |
| run: | | |
| ./runtests.sh |