pr-smoke-test-play-images.yml 571 B

123456789101112131415161718192021
  1. name: PR build Play images for smoke tests
  2. on:
  3. pull_request:
  4. paths:
  5. - "smoke-tests/images/play/**"
  6. - ".github/workflows/pr-smoke-test-play-images.yml"
  7. - ".github/workflows/reusable-smoke-test-images.yml"
  8. branches:
  9. - main
  10. jobs:
  11. build:
  12. uses: ./.github/workflows/reusable-smoke-test-images.yml
  13. with:
  14. project: ":smoke-tests:images:play"
  15. cache-read-only: true
  16. # Play doesn't support Java 16+ yet
  17. # https://github.com/playframework/playframework/pull/10819
  18. skip-java-17: true
  19. skip-java-21: true