diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 35753bc..09cd335 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -9,7 +9,11 @@ on: workflow_dispatch: jobs: + test: + uses: ./.github/workflows/integration.yml + build: + needs: test permissions: contents: write packages: write diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 0b89dc8..bd6e30c 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -4,13 +4,11 @@ on: pull_request: branches: - main - push: - branches: - - main workflow_dispatch: + workflow_call: jobs: - lab: + test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4