Command to archive user data #230
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: Pull Request Build | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [3.8] | |
env: | |
POSTGRES_DB: mygpo | |
POSTGRES_PASSWORD: mygpo | |
POSTGRES_USER: mygpo | |
POSTGRES_PORT: 5432 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -q | |
make install-deps | |
python -m pip install --upgrade pip | |
pip install coveralls | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
if [ -f requirements-test.txt ]; then pip install -r requirements-test.txt; fi | |
- name: Setup PostgreSQL | |
run: | | |
sudo sed -i -e '/local.*peer/s/mygpo/all/' -e 's/peer\|md5/trust/g' /etc/postgresql/*/main/pg_hba.conf | |
sudo service postgresql restart | |
sleep 1 | |
sudo -u postgres psql -c "CREATE USER mygpo WITH PASSWORD 'mygpo' CREATEDB;" | |
#sudo -u postgres psql -c "CREATE DATABASE mygpo_test OWNER mygpo;" | |
- name: Check Format and Coverage | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
make check-code-format | |
python -m pytest --cov=mygpo/ --cov-branch | |
python -m coveralls --service=github |