This repository was archived by the owner on Jun 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +40
-19
lines changed Expand file tree Collapse file tree 4 files changed +40
-19
lines changed Original file line number Diff line number Diff line change 11# These are supported funding model platforms
22
3- custom : ['http ://eng.elimu.ai/contributions/donate']
3+ custom : ['https ://eng.elimu.ai/contributions/donate']
Original file line number Diff line number Diff line change 1+ name : CI on main
2+ on :
3+ push :
4+ branches :
5+ - " main"
6+ jobs :
7+ build :
8+ strategy :
9+ matrix :
10+ os : [ubuntu-latest]
11+ runs-on : ${{ matrix.os }}
12+ steps :
13+ - uses : actions/checkout@v3
14+ - uses : actions/setup-java@v3
15+ with :
16+ distribution : temurin
17+ java-version : 11
18+ - name : Setup Gradle
19+ uses : gradle/gradle-build-action@v2
20+ - name : Execute Gradle build
21+ run : ./gradlew clean build
Original file line number Diff line number Diff line change 1+ name : CI on PR
2+ on : pull_request
3+ jobs :
4+ build :
5+ strategy :
6+ matrix :
7+ os : [ubuntu-latest]
8+ runs-on : ${{ matrix.os }}
9+ steps :
10+ - uses : actions/checkout@v3
11+ - uses : actions/setup-java@v3
12+ with :
13+ distribution : temurin
14+ java-version : 11
15+ - name : Setup Gradle
16+ uses : gradle/gradle-build-action@v2
17+ - name : Execute Gradle build
18+ run : ./gradlew clean build
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments