support enum type cast #1773
Workflow file for this run
This file contains hidden or 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: Replication Tests | |
| on: [pull_request] | |
| concurrency: | |
| group: ci-replication-tests-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| testing-job: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 10 | |
| name: Run tests | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Build docker image | |
| run: docker build -t local --file testing/ReplicationTestDockerfile . | |
| - name: Run tests | |
| run: docker run --detach=false local |