Skip to content

Updates

Updates #191

Workflow file for this run

name: Build

Check failure on line 1 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

`schedule` accepts a list of one or more maps with the `cron` key set
on:
schedule:
# Every day at 9AM EST
#- cron: '0 13 * * *'
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: sh redpanda_start.sh -d
- name: Validate tables
uses: deephaven/action-assert-dh-tables-present@v1
with:
table-names: trades,quotes,candle,profile,summary,order,underlying,timeAndSale,series
host: localhost
max-retries: 10
- name: Notify Slack
uses: slackapi/slack-github-action@v1.15.0
id: notify-slack
if: ${{ failure() && github.ref == 'refs/heads/main' }}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL_DEVREL }}
with:
payload: '{"repository": "${{ github.repository }}", "message": "${{ github.workflow }}/${{ github.job }} failure", "link": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"}'