CI #1100
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: CI | |
on: | |
schedule: | |
- cron: '0 8 */10 * *' | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
merge_group: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
event_file: | |
name: "Event File" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Event File | |
path: ${{ github.event_path }} | |
build-jvm: | |
name: "Build JVM" | |
uses: "./.github/workflows/build-jvm.yml" | |
build-snapshots: | |
name: "Build Snapshots" | |
uses: "./.github/workflows/build-snapshots.yml" | |
build-python: | |
name: "Build Python" | |
needs: build-jvm | |
uses: "./.github/workflows/build-python.yml" | |
test-jvm: | |
name: "Test JVM" | |
needs: build-jvm | |
uses: "./.github/workflows/test-jvm.yml" | |
test-python: | |
name: "Test Python" | |
needs: build-jvm | |
uses: "./.github/workflows/test-python.yml" | |
test-snapshots-jvm: | |
name: "Test Snapshots" | |
needs: build-snapshots | |
uses: "./.github/workflows/test-snapshots.yml" | |
check: | |
name: "Check" | |
needs: build-jvm | |
uses: "./.github/workflows/check.yml" | |
test_success: | |
name: "Test success" | |
runs-on: ubuntu-latest | |
needs: [build-python, test-jvm, test-python, test-snapshots-jvm] | |
steps: | |
- name: Noop | |
run: true | |
shell: bash |