Skip to content

Daily Tests

Daily Tests #4

Workflow file for this run

name: Daily Tests
on:
schedule:
- cron: '0 0 * * *' # Runs at 00:00 UTC every day
jobs:
tests:
uses: ./.github/workflows/tests.yml
secrets: inherit
notify:
needs: [ tests ]
runs-on: ubuntu-24.04
if: ${{ always() }}
steps:
- name: Slack Notifications
uses: rtCamp/action-slack-notify@v2
env:
SLACK_CHANNEL: boxlang-cron
SLACK_COLOR: ${{ job.status }} # or a specific color like 'green' or '#ff00ff'
SLACK_ICON_EMOJI: ":bell:"
SLACK_MESSAGE: '${{ github.repository }} weekly tests'
SLACK_TITLE: ${{ github.repository }} Tests results
SLACK_USERNAME: CI
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}