native-tests-daily.yml 472 B

123456789101112131415161718192021
  1. name: Daily GraalVM native tests
  2. on:
  3. schedule:
  4. # daily at 4:00 UTC
  5. - cron: "0 4 * * *"
  6. workflow_dispatch:
  7. jobs:
  8. graalvm-native-tests:
  9. uses: ./.github/workflows/reusable-native-tests.yml
  10. with:
  11. test-latest-deps: true
  12. workflow-notification:
  13. needs:
  14. - graalvm-native-tests
  15. if: always()
  16. uses: ./.github/workflows/reusable-workflow-notification.yml
  17. with:
  18. success: ${{ needs.graalvm-native-tests.result == 'success' }}