steps:
+ # Setup PostgreSQL
- uses: ankane/setup-postgres@v1
- name: Setup Postgres user
run: |
psql --command="CREATE USER runner CREATEDB PASSWORD 'test'"
if: ${{ runner.os == 'Windows' }}
+ # Setup Python/pip
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
with:
path: ${{ matrix.pip-cache-path }}
key: ${{ runner.os }}-pip
+
+ # Setup tox
- name: Install dependencies
run: |
python --version
f.write('TOXENV=' + toxenv + '\n')
f.write('PGPASSWORD=test\n')
shell: python
+
- name: Run tox
run: |
python -c "import os; print(os.environ['TOXENV'])"