From 68bf71828566771dad3cc8952e6d515f780f249a Mon Sep 17 00:00:00 2001 From: Kumi Date: Sat, 17 Aug 2024 15:51:04 +0200 Subject: [PATCH] refactor(workflow): remove setup and test job Eliminated redundant setup and test job from the release workflow to streamline the release process. --- .forgejo/workflows/release.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index 08e6ff7..b015412 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -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: