Ubuntu Tests #333
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: Ubuntu Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: '0 9 * * 4' | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install dependencies | |
run: pip install --upgrade -r requirements.txt | |
- name: fetch upstream cheat sheets | |
run: python lib/fetch.py fetch-all | |
- name: run bash tests | |
run: bash tests/run-tests.sh | |
- name: run pytest | |
run: pytest lib/ | |
docker: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: docker-compose build | |
- run: docker images | |
- run: | | |
docker-compose -f docker-compose.yml up -d | |
# docker-compose -f docker-compose.yml -f docker-compose.debug.yml up -d | |
docker-compose ps | |
# wait until the web server is up | |
wget --timeout 3 --tries=5 --spider localhost:8002 2>&1 | grep -i http | |
docker-compose logs --no-color | |
- run: CHEATSH_TEST_STANDALONE=NO bash tests/run-tests.sh | |