.github/workflows/upstream_test.yml #1224
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
on: | |
workflow_dispatch: # allow manual execution | |
schedule: | |
# run on every 9 o'clock | |
- cron: '0 9 * * *' | |
jobs: | |
unit_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.8.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8.11 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y postgresql python3-dev libpq-dev build-essential | |
make dev envfile | |
- name: Setup database | |
run: | | |
sudo systemctl start postgresql | |
make postgres | |
- name: Run upstream tests | |
run: make webtest | |
env: | |
GH_TOKEN: 1 |