Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into report-viewer/simp…
Browse files Browse the repository at this point in the history
…le-e2e
  • Loading branch information
Kr0nox committed Sep 6, 2023
2 parents e1167b3 + b867d6f commit d1afc38
Show file tree
Hide file tree
Showing 31 changed files with 464 additions and 449 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,18 @@ name: Build

on:
push:
paths:
- ".github/workflows/maven.yml"
- "**/pom.xml"
- "**.java"
- "**.g4"
pull_request:
types: [opened, synchronize, reopened]
paths:
- ".github/workflows/maven.yml"
- "**/pom.xml"
- "**.java"
- "**.g4"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
paths:
- ".github/workflows/report-viewer-build-test.yml"
- "report-viewer/**"

jobs:
pre_job:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/report-viewer-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
push:
branches:
- develop
paths:
- ".github/workflows/report-viewer-dev.yml"
- "report-viewer/**"

jobs:
build-and-deploy:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/report-viewer-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
paths:
- ".github/workflows/report-viewer-e2e.yml"
- "report-viewer/**"

jobs:
pre_job:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/report-viewer-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ on:
workflow_dispatch:
push:
path:
- report-viewer/**
- ".github/workflows/report-viewer-lint.yml"
- "report-viewer/**"
pull_request:
types: [opened, synchronize, reopened]
paths:
- ".github/workflows/report-viewer-lint.yml"
- "report-viewer/**"

jobs:
pre_job:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/report-viewer-prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@ name: Report Viewer Prettier Check Workflow # Checks the report viewer against t
on:
workflow_dispatch:
push:
path:
- report-viewer/**
paths:
- ".github/workflows/report-viewer-prettier.yml"
- "report-viewer/**"
pull_request:
types: [opened, synchronize, reopened]
paths:
- ".github/workflows/report-viewer-prettier.yml"
- "report-viewer/**"


jobs:
pre_job:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v3
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/report-viewer-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
paths:
- ".github/workflows/report-viewer-unit.yml"
- "report-viewer/**"

jobs:
pre_job:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/sonarcloud-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on:
branches:
- main
- develop
paths:
- ".github/workflows/sonarcloud-branch.yml"
- "**/pom.xml"
- "**.java"
- "**.g4"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/spotless.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
name: Spotless Style Check

on:
push:
push:
paths:
- ".github/workflows/spotless.yml"
- "**/pom.xml"
- "**.java"
- "**.g4"
pull_request:
types: [opened, synchronize, reopened]
paths:
- ".github/workflows/spotless.yml"
- "**/pom.xml"
- "**.java"
- "**.g4"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>4.7.4</version>
<version>4.7.5</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion languages/scala/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<dependency>
<groupId>org.scalameta</groupId>
<artifactId>scalameta_${scala.compat.version}</artifactId>
<version>4.8.8</version>
<version>4.8.9</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<spotless.version>2.38.0</spotless.version>
<spotless.version>2.39.0</spotless.version>
<slf4j.version>2.0.7</slf4j.version>
<junit.version>5.10.0</junit.version>

Expand Down
Loading

0 comments on commit d1afc38

Please sign in to comment.