From b204ad7e7a570f29e8897980b3d8456d07597ce0 Mon Sep 17 00:00:00 2001 From: Khai Do <3697686+zaro0508@users.noreply.github.com> Date: Wed, 24 Jan 2024 08:34:53 -0800 Subject: [PATCH] CI: Remove install dependencies (#1428) Some CI jobs do not require installing poetry dependencies --- .github/workflows/main.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index c9c738fea..b42786073 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -23,8 +23,6 @@ jobs: - uses: actions/checkout@v4 - name: Install Poetry uses: snok/install-poetry@v1 - - name: Install dependencies - run: poetry install --no-interaction --all-extras - name: build package run: poetry build @@ -185,7 +183,5 @@ jobs: - uses: actions/checkout@v4 - name: Install Poetry uses: snok/install-poetry@v1 - - name: Install dependencies - run: poetry install --no-interaction --all-extras - name: Publish to pypi run: poetry publish --build -u __token__ -p ${{ secrets.PYPI_API_TOKEN }}