[das#16] Remove integration tests from the workflows and add them at the end of the release script #1
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: Check Pull Request | |
on: | |
pull_request: | |
branches: | |
- develop | |
- master | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ^3.8.5 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pip3 install poetry | |
- name: Run poetry lock | |
run: poetry lock --no-update | |
- name: Install dependencies | |
run: poetry export --dev -f requirements.txt | pip3 install -r /dev/stdin | |
- name: Run Unit Tests | |
run: make unit-tests unit-tests-coverage |