diff --git a/.github/workflows/verify_build_container.yml b/.github/workflows/verify_build_container.yml new file mode 100644 index 000000000..eb3102d0f --- /dev/null +++ b/.github/workflows/verify_build_container.yml @@ -0,0 +1,20 @@ +name: Build container using the PR + +on: + pull_request: + types: [ opened, synchronize, reopened ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Checkout Pull Request Branch + uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.sha }} + + - name: Run make build + run: make build