Add the ability to export events for a subset of projects and from a starting offset #1152
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: Delta Static analysis | |
on: | |
pull_request: | |
paths: | |
- 'delta/**' | |
- 'build.sbt' | |
- 'project/**' | |
- '.github/workflows/ci-delta-static-analysis.yml' | |
jobs: | |
run: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
check-latest: true | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Static analysis | |
run: | | |
sbt -Dsbt.color=always -Dsbt.supershell=false \ | |
clean \ | |
static-analysis |