Skip to content

Correctness tests

Correctness tests #242

Workflow file for this run

name: Correctness tests
on:
workflow_dispatch:
inputs:
djl-version:
description: 'The released version of DJL'
required: false
default: ''
schedule:
- cron: '0 9 * * *'
# TODO: port this to integration tests in 0.31.0 and then delete this file
jobs:
fast-fail:
runs-on: ubuntu-latest
steps:
- name: Fail if run on master branch
id: fast_fail
if: github.ref == 'refs/heads/master'
run: |
echo "Fast fail"
exit 1