From 109cca890b9537093d4a5aed1c9f6f06d5aaaa29 Mon Sep 17 00:00:00 2001 From: Igor Derkach Date: Sun, 3 Nov 2024 17:57:20 +0400 Subject: [PATCH] Debug CICD --- .github/workflows/commit.yaml | 8 ++++---- .github/workflows/release.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/commit.yaml b/.github/workflows/commit.yaml index ba75273..494e565 100644 --- a/.github/workflows/commit.yaml +++ b/.github/workflows/commit.yaml @@ -14,16 +14,16 @@ jobs: with: python-version: ${{ matrix.python-version }} - uses: abatilo/actions-poetry@v2 + - name: Install dependencies + run: poetry install + - name: Run tests + run: poetry run pytest - uses: codecov/codecov-action@v4 with: fail_ci_if_error: true files: ./coverage.xml flags: unittests token: ${{ secrets.CODECOV_TOKEN }} - - name: Install dependencies - run: poetry install - - name: Run tests - run: poetry run pytest lint: runs-on: ubuntu-latest diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e46cfc5..9ac986a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -46,7 +46,7 @@ jobs: build_exe: # if: ${{ github.event.workflow_run.conclusion == 'success' }} - needs: "Commit push" +# needs: "Commit push" runs-on: windows-latest steps: - uses: actions/checkout@v4 @@ -71,7 +71,7 @@ jobs: testpypi_publish: # if: ${{ github.event.workflow_run.conclusion == 'success' }} - needs: "Commit push" +# needs: "Commit push" runs-on: ubuntu-latest steps: - uses: actions/checkout@v4