Skip to content

Commit

Permalink
Re-enable integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamforka committed Oct 1, 2023
1 parent 2ed0a74 commit 807ae70
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/main-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,15 @@ on:
jobs:
static-checks:
uses: ./.github/workflows/_static-checks.yml
# integration-tests:
# uses: ./.github/workflows/_integration-tests.yml
# secrets:
# DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
integration-tests:
uses: ./.github/workflows/_integration-tests.yml
secrets:
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
build-package:
uses: ./.github/workflows/_build-package.yml
upload-package:
uses: ./.github/workflows/_upload-package.yml
if: startsWith(github.ref, 'refs/tags/')
# needs: [static-checks, integration-tests, build-package]
needs: [static-checks, build-package]
needs: [static-checks, integration-tests, build-package]
secrets:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

0 comments on commit 807ae70

Please sign in to comment.