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:
|
||||
- name: Checkout source code
|
||||
uses: https://code.forgejo.org/actions/checkout@v3
|
||||
- name: Setup venv
|
||||
run: |
|
||||
cd backend
|
||||
python -m venv .venv
|
||||
./.venv/bin/activate
|
||||
- name: Switch to correct directory
|
||||
run: cd backend
|
||||
- name: Install packages
|
||||
run: |
|
||||
pip install -e . -q
|
||||
|
@ -30,11 +27,8 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout source code
|
||||
uses: https://code.forgejo.org/actions/checkout@v3
|
||||
- name: Setup venv and install packages
|
||||
run: |
|
||||
cd backend
|
||||
python -m venv .venv
|
||||
./.venv/bin/activate
|
||||
- name: Switch to correct directory
|
||||
run: cd backend
|
||||
- name: Install packages
|
||||
run: pip install build
|
||||
- name: Build package
|
||||
|
|
Loading…
Reference in a new issue