Fixed RD-15252: date vs. timestamp comparisons not supported in SOQL #57
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: CI | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/ci.yaml | |
- .sbtopts | |
- build.sbt | |
- .scalafmt.conf | |
- project/** | |
- src/** | |
defaults: | |
run: | |
shell: bash | |
env: | |
GITHUB_TOKEN: ${{ secrets.READ_PACKAGES }} | |
jobs: | |
code-check: | |
runs-on: self-hosted | |
container: | |
image: sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.2_13_1.9.9_2.12.19 | |
options: --user 1001:1001 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sbt headerCheckAll | |
- run: sbt scalafmtCheckAll | |
test: | |
runs-on: self-hosted | |
container: | |
image: sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.2_13_1.9.9_2.12.19 | |
options: --user 1001:1001 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sbt clean test |