We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41eb66f commit 80495e1Copy full SHA for 80495e1
.github/workflows/fabric8-next-version-schedule.yml
@@ -0,0 +1,30 @@
1
+name: Fabric8 Client Snapshot Build
2
+
3
+env:
4
+ MAVEN_ARGS: -V -ntp -e
5
6
+concurrency:
7
+ group: ${{ github.ref }}-${{ github.workflow }}
8
+ cancel-in-progress: true
9
+on:
10
+ schedule:
11
+ # Run on end of the day
12
+ - cron: '0 0 * * *'
13
+ workflow_dispatch:
14
+jobs:
15
+ check_format_and_unit_tests:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ with:
20
+ ref: 'fabric8-next-version'
21
+ - name: Set up Java and Maven
22
+ uses: actions/setup-java@v4
23
24
+ distribution: temurin
25
+ java-version: 17
26
+ - name: Run unit tests
27
+ run: ./mvnw ${MAVEN_ARGS} clean install --file pom.xml
28
29
+ build:
30
+ uses: ./.github/workflows/build.yml
0 commit comments