Apache Kafka, Apache Flink #256
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Apache Kafka, Apache Flink | |
on: | |
pull_request: | |
branches: ~ | |
paths: | |
- '.github/workflows/application-apache-kafka-flink.yml' | |
- 'application/apache-kafka-flink/**' | |
- '/requirements.txt' | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/application-apache-kafka-flink.yml' | |
- 'application/apache-kafka-flink/**' | |
- '/requirements.txt' | |
# Allow job to be triggered manually. | |
workflow_dispatch: | |
# Run job each night after CrateDB nightly has been published. | |
schedule: | |
- cron: '0 3 * * *' | |
# Cancel in-progress jobs when pushing to the same branch. | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ "ubuntu-latest" ] | |
name: OS ${{ matrix.os }} | |
steps: | |
- name: Acquire sources | |
uses: actions/checkout@v4 | |
- name: Validate application/apache-kafka-flink | |
run: | | |
# TODO: Generalize invocation into `ngr` test runner. | |
cd application/apache-kafka-flink | |
bash test.sh |