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: tests_denormalized_parallel | |
on: | |
push: | |
branches: ['*'] | |
pull_request: | |
branches: ['*'] | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup python | |
run: | | |
pip3 install -r requirements.txt | |
- name: docker | |
run: | | |
git submodule init | |
git submodule update | |
docker-compose up -d --build | |
docker ps -a | |
sleep 20 | |
./load_tweets_parallel.sh | |
docker-compose exec -T pg_denormalized ./run_tests.sh | |