Update github actions

This commit is contained in:
Griatch 2022-11-19 01:48:02 +01:00
parent 8787f8c34f
commit f50ebd8492
2 changed files with 5 additions and 8 deletions

View file

@ -41,8 +41,8 @@ jobs:
# full game dir needed for mv-local
- name: Set up evennia game dir
run: |
pip install -e .
pip install -r requirements_extra.txt
pip install .
pip install .[extra]
cd ..
evennia --init gamedir
cd gamedir

View file

@ -96,8 +96,7 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
requirements.txt
requirements_extra.txt
pyproject.toml
- name: Install package dependencies
run: |
@ -107,10 +106,8 @@ jobs:
pip install mysqlclient
pip install coveralls
pip install tblib
pip install -e .
- name: Install extra dependencies
run: pip install -r requirements_extra.txt
pip install .
pip install .[extra]
- name: Initialize evennia
run: |