From f2b1c5413165998244efd7866660437a997628f6 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Tue, 12 Dec 2023 14:20:39 +0100 Subject: [PATCH] How does workflow work? --- .gitea/workflows/python-package.yaml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.gitea/workflows/python-package.yaml b/.gitea/workflows/python-package.yaml index 692ea8a..6873c8c 100644 --- a/.gitea/workflows/python-package.yaml +++ b/.gitea/workflows/python-package.yaml @@ -18,7 +18,7 @@ jobs: apt-get update apt-get install -y python3 python3-pip - name: Installing dependencies - run: python3 -m pip install --upgrade pip setuptools wheel pytest + run: python3 -m pip install --upgrade pip setuptools wheel build twine - name: Check out repository code uses: actions/checkout@v3 - name: Test @@ -27,14 +27,6 @@ jobs: runs-on: ubuntu-latest needs: [test] steps: - - name: Setting up python - run: | - apt-get update - apt-get install -y python3 python3-pip - - name: Installing dependencies - run: python3 -m pip install --upgrade pip setuptools wheel build twine - - name: Check out repository code - uses: actions/checkout@v3 - name: Build run: python3 -m build - name: Publish