Fix parsing errors on semicolon-delimited generic type parameters in routine implementation headers #675
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: Build | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- '**.svg' | |
- '**.png' | |
- 'LICENSE.txt' | |
- 'NOTICE.txt' | |
- '.git*' | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Maven Install | |
run: mvn clean install -Pci --batch-mode --no-transfer-progress | |
- name: Upload plugin jar | |
uses: actions/upload-artifact@v4 | |
with: | |
name: sonar-delphi-plugin-jar | |
path: sonar-delphi-plugin/target/sonar-delphi-plugin-*.jar |