fixed changelog #365
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: 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 |