update the date_filter feature with new absolute open-ended filtering (from / until) #112
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: "CI" | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| paths-ignore: ["docs/**", "**/*.md", "**/LICENSE", "**/.gitignore"] | |
| pull_request: | |
| branches: ["main"] | |
| paths-ignore: ["docs/**", "**/*.md", "**/LICENSE", "**/.gitignore"] | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: "temurin" | |
| java-version: 8 | |
| cache: "sbt" | |
| - uses: sbt/setup-sbt@v1 | |
| with: | |
| sbt-runner-version: 1.10.11 | |
| - run: sbt compile | |
| - run: sbt test | |
| - run: sbt package | |
| - run: tar cf artefacts.tar target/ */target/ | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: Artefacts | |
| path: artefacts.tar | |