Skip to content

Commit 6c897a9

Browse files
committed
Add GitHub Actions CI
1 parent 000cdf9 commit 6c897a9

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build
2+
on: [push, pull_request]
3+
4+
jobs:
5+
build:
6+
name: Build and Test
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
os: [ubuntu-latest, macos-latest, windows-latest]
11+
jdk: [8]
12+
runs-on: ${{ matrix.os }}
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Setup Java
16+
uses: actions/setup-java@v4
17+
with:
18+
distribution: 'liberica'
19+
java-version: ${{ matrix.jdk }}
20+
- name: Build, and Package
21+
run: mvn clean package -DskipTests
22+
- name: Test
23+
run: mvn clean package -Pintegration-test

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Srophé Application
2+
[![Build Status](https://github.com/srophe/srophe/actions/workflows/ci.yml/badge.svg)](https://github.com/srophe/srophe/actions/workflows/ci.yml)
23
A TEI publishing application.
34

45
The Srophé Application is an open source TEI publishing framework. Originally developed as a digital publication platform for

0 commit comments

Comments
 (0)