Skip to content

Add store limit and startDate for readme (#8) #67

Add store limit and startDate for readme (#8)

Add store limit and startDate for readme (#8) #67

Workflow file for this run

name: CI
on:
pull_request:
branches: ['**']
push:
branches: ['**']
tags: [v*]
workflow_dispatch:
permissions:
contents: read
jobs:
ci:
# run on push, external PRs do not run on internal PRs since those will be run by push to branch
if: |
github.event_name == 'push' ||
github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build & Test
run: mvn clean package