Skip to content

Commit

Permalink
Credentials to environment
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-marty committed Aug 11, 2022
1 parent a85c862 commit 3a44730
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
sudo /etc/init.d/postgresql start || journalctl -xe
- name: Start MySQL
run: |
sudo /etc/init.d/mysql start
sudo /etc/init.d/mysql start || journalctl -xe
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand All @@ -48,5 +48,10 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 src --count --show-source --statistics --exit-zero --max-complexity=20
- name: Test with pytest
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
MYSQL_ROOT_PASSWORD: insecure_password
run: |
tox

0 comments on commit 3a44730

Please sign in to comment.