Merge branch 'master' of github.com:OpenUpSA/pmg-cms-2 #612
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: Test | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' # weekly | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add hosts | |
run: echo "127.0.0.1 pmg.test" | sudo tee -a /etc/hosts | |
- name: Run tests | |
run: docker compose -f docker-compose.yml -f docker-compose-test.yml run --rm web nosetests --with-coverage tests | |
- name: Setup Dev Database | |
run: docker compose run --rm web python setup_dev_database.py | |
- name: Setup the database Stamp Head | |
run: docker compose run --rm web python app.py db stamp head | |
- name: Setup the database Search Reindex All | |
run: docker compose run --rm web python bin/search.py --reindex all | |
- name: Start the server | |
run: docker compose up -d | |
- name: Wait for app | |
run: bin/wait-for-app.sh | |
- name: "Smoke test demo data check that a typical request returns the data in demodata" | |
run: curl -f http://pmg.test:5000 | grep "Featured Content" | |
# Run codecov passing appropriate codecov.io CI environment variables to container | |
- name: codecov | |
run: docker compose run --rm `bash <(curl -s https://codecov.io/env)` web codecov |