native-tests-daily.yml 433 B

12345678910111213141516171819
  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. workflow-notification:
  11. needs:
  12. - graalvm-native-tests
  13. if: always()
  14. uses: ./.github/workflows/reusable-workflow-notification.yml
  15. with:
  16. success: ${{ needs.graalvm-native-tests.result == 'success' }}