Skip to content

Commit

Permalink
Set up CI to build and test each project
Browse files Browse the repository at this point in the history
  • Loading branch information
gmantele committed Dec 6, 2023
1 parent 7162cf7 commit 8c1120d
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/adqllib.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build and test ADQLLib project

on:
push:
paths:
- 'ADQLLib/**'
- 'build.gradle'
- '.github/workflows/*'

jobs:
build-adqllib-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v3
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run build with Gradle Wrapper
run: ./gradlew :ADQLLib:build
19 changes: 19 additions & 0 deletions .github/workflows/taplib.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build and test TAPLib project

on:
push:
paths:
- 'TAPLib/**'
- 'build.gradle'
- '.github/workflows/*'

jobs:
build-taplib-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v3
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run build with Gradle Wrapper
run: ./gradlew :TAPLib:build
19 changes: 19 additions & 0 deletions .github/workflows/uwslib.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build and test UWSLib project

on:
push:
paths:
- 'UWSLib/**'
- 'build.gradle'
- '.github/workflows/*'

jobs:
build-uwslib-project:
runs-on: ubuntu-latest
steps:
- name: Checkout project sources
uses: actions/checkout@v3
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run build with Gradle Wrapper
run: ./gradlew :UWSLib:build

0 comments on commit 8c1120d

Please sign in to comment.