refactor(workflow): remove setup and test job
Eliminated redundant setup and test job from the release workflow to streamline the release process.
This commit is contained in:
parent
d5880f9a2c
commit
68bf718285
1 changed files with 0 additions and 22 deletions
|
@ -7,28 +7,6 @@ on:
|
|||
- "*"
|
||||
|
||||
jobs:
|
||||
setup:
|
||||
name: Setup and Test
|
||||
container:
|
||||
image: node:20-bookworm
|
||||
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
apt update
|
||||
apt install -y python3-venv
|
||||
|
||||
- name: Set up Python environment
|
||||
run: |
|
||||
python3 -V
|
||||
python3 -m venv venv
|
||||
. ./venv/bin/activate
|
||||
pip install -U pip
|
||||
pip install .[all]
|
||||
|
||||
publish:
|
||||
name: Publish to PyPI
|
||||
container:
|
||||
|
|
Loading…
Reference in a new issue