Skip to content

update the date_filter feature with new absolute open-ended filtering (from / until) #112

update the date_filter feature with new absolute open-ended filtering (from / until)

update the date_filter feature with new absolute open-ended filtering (from / until) #112

Workflow file for this run

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