Merge branch 'main' into fix/datetime-examples #405
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: Audoma test | |
| on: [push] | |
| jobs: | |
| audoma-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Build docker image | |
| run: | | |
| echo "---> Building test image and running tests" | |
| docker compose -f docker/docker-compose.yml build | |
| - name: Run tests | |
| run: | | |
| echo "---> Building test image and running tests" | |
| docker compose -f docker/docker-compose.yml run --rm tests | |
| - name: Run test coverage report | |
| run: | | |
| echo "---> Building test image and running tests" | |
| docker compose -f docker/docker-compose.yml run --rm coverage | |
| - name: Install dependencies | |
| run: pip install -r requirements_dev.txt | |
| - name: Run static analysis | |
| run: ./static_analysis.sh |