Fix java type for event_time #2062
Workflow file for this run
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: Build and test SQRL with Maven | |
on: | |
pull_request: | |
branches: [ "main", "v0.5.9-release"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
env: | |
TZ: 'America/Los_Angeles' | |
steps: | |
- name: Setup Timezone | |
uses: szenius/[email protected] | |
with: | |
timezoneLinux: "America/Los_Angeles" | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
cache: maven | |
- name: Build SQRL | |
env: | |
DATASQRL_TOKEN: ${{ secrets.DATASQRL_TOKEN }} | |
run: mvn -T 1 -B -U -e clean verify | |
- name: Build Docker image | |
run: docker build -t sqrl-test ./sqrl-tools | |
- name: Run Docker container and execute tests | |
working-directory: ./sqrl-testing/sqrl-integration-tests/src/test/resources/usecases/conference | |
run: | | |
docker run -i --rm -v $PWD:/build sqrl-test test conference.sqrl conference.graphqls --snapshot snapshots-conference --tests tests-conference | |
continue-on-error: false | |
- name: Test UDF | |
working-directory: ./sqrl-testing/sqrl-integration-tests/src/test/resources/usecases/udf | |
run: | | |
docker run -i --rm -v $PWD:/build sqrl-test test myudf.sqrl --snapshot snapshots-myudf --tests tests-myudf | |
continue-on-error: false | |
- name: Check Docker return code | |
run: | | |
if [ $? -ne 0 ]; then | |
echo "Test failed." | |
exit 1 | |
else | |
echo "Test passed." | |
fi |