Fix conditionals
This commit is contained in:
parent
83f7178e18
commit
0cf26f27fa
1 changed files with 7 additions and 4 deletions
9
.github/workflows/pythonpackage.yml
vendored
9
.github/workflows/pythonpackage.yml
vendored
|
|
@ -23,11 +23,11 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- uses: harmon758/postgresql-action@v1
|
- uses: harmon758/postgresql-action@v1
|
||||||
if: ${{ matrix.TESTING_DB == 'mysql' }}
|
if: ${{ matrix.TESTING_DB == 'postgresql' }}
|
||||||
with:
|
with:
|
||||||
postgresql version: '10.7'
|
postgresql version: '10.7'
|
||||||
- uses: mirromutth/mysql-action@v1.1
|
- uses: mirromutth/mysql-action@v1.1
|
||||||
if: ${{ matrix.TESTING_DB == 'postgresql'}}
|
if: ${{ matrix.TESTING_DB == 'mysql'}}
|
||||||
with:
|
with:
|
||||||
mysql version: '8.0'
|
mysql version: '8.0'
|
||||||
mysql root password: 'root'
|
mysql root password: 'root'
|
||||||
|
|
@ -72,7 +72,10 @@ jobs:
|
||||||
pip install coveralls
|
pip install coveralls
|
||||||
pip install codacy-coverage
|
pip install codacy-coverage
|
||||||
pip install -e .
|
pip install -e .
|
||||||
pip install -r requirements_extra.txt
|
|
||||||
|
- name: Install extra dependencies # Only develop branch right now
|
||||||
|
if: ${{ github.ref == 'refs/heads/develop' }}
|
||||||
|
run: pip install -r requirements_extra.txt
|
||||||
|
|
||||||
- name: Install and initialize evennia
|
- name: Install and initialize evennia
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue