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:
Kumi 2024-08-17 15:51:04 +02:00
parent d5880f9a2c
commit 68bf718285
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -7,28 +7,6 @@ on:
- "*" - "*"
jobs: 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: publish:
name: Publish to PyPI name: Publish to PyPI
container: container: