Skip to content
This repository was archived by the owner on Jun 20, 2024. It is now read-only.

Commit f032f9c

Browse files
committed
Merge branch 'main' into pr/38
2 parents 46164a8 + 0769ebe commit f032f9c

File tree

4 files changed

+40
-19
lines changed

4 files changed

+40
-19
lines changed

.github/FUNDING.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# These are supported funding model platforms
22

3-
custom: ['http://eng.elimu.ai/contributions/donate']
3+
custom: ['https://eng.elimu.ai/contributions/donate']

.github/workflows/ci_main.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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

.github/workflows/ci_pr.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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

.travis.yml

-18
This file was deleted.

0 commit comments

Comments
 (0)