-
Notifications
You must be signed in to change notification settings - Fork 8
32 lines (29 loc) · 850 Bytes
/
ci.yml
File metadata and controls
32 lines (29 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
name: CI
on:
push:
branches:
- "master"
tags-ignore:
- "*"
pull_request:
branches:
- "master"
workflow_dispatch: { }
concurrency:
group: build-java-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
uses: jqassistant-tooling/jqassistant-github-actions/.github/workflows/ci.yml@main
with:
java_test_versions: '[17, 25]' # use versions supported by last Spring version
publish_snapshots: true
sonar_organization: 'jqassistant'
sonar_project_key: 'jqassistant_extended-objects'
secrets:
ossrh_username: ${{ secrets.OSSRH_USERNAME }}
ossrh_password: ${{ secrets.OSSRH_PASSWORD }}
ossrh_signing_key: ${{ secrets.OSSRH_SIGNING_KEY }}
ossrh_signing_password: ${{ secrets.OSSRH_SIGNING_PASSWORD }}
sonar_token: ${{ secrets.SONAR_TOKEN }}