Removed venv step
This commit is contained in:
parent
472a00bf87
commit
39d21ced0b
1 changed files with 4 additions and 10 deletions
|
@ -8,11 +8,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout source code
|
- name: Checkout source code
|
||||||
uses: https://code.forgejo.org/actions/checkout@v3
|
uses: https://code.forgejo.org/actions/checkout@v3
|
||||||
- name: Setup venv
|
- name: Switch to correct directory
|
||||||
run: |
|
run: cd backend
|
||||||
cd backend
|
|
||||||
python -m venv .venv
|
|
||||||
./.venv/bin/activate
|
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: |
|
run: |
|
||||||
pip install -e . -q
|
pip install -e . -q
|
||||||
|
@ -30,11 +27,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout source code
|
- name: Checkout source code
|
||||||
uses: https://code.forgejo.org/actions/checkout@v3
|
uses: https://code.forgejo.org/actions/checkout@v3
|
||||||
- name: Setup venv and install packages
|
- name: Switch to correct directory
|
||||||
run: |
|
run: cd backend
|
||||||
cd backend
|
|
||||||
python -m venv .venv
|
|
||||||
./.venv/bin/activate
|
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: pip install build
|
run: pip install build
|
||||||
- name: Build package
|
- name: Build package
|
||||||
|
|
Loading…
Reference in a new issue