Skip to content

Commit 80495e1

Browse files
committed
revert daily build removal
Signed-off-by: Attila Mészáros <a_meszaros@apple.com>
1 parent 41eb66f commit 80495e1

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)