Skip to content

Commit

Permalink
Merge pull request #203 from larsgw/patch-3
Browse files Browse the repository at this point in the history
Set up GitHub Actions to compile PathVisio
  • Loading branch information
mkutmon authored Aug 29, 2023
2 parents 2ed1cb7 + 7a3053d commit 471fde3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ant.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Java CI

on:
push:
pull_request:

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
openjdk: [8]

steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.openjdk }}
distribution: 'temurin'
- name: Build with Ant
run: ant exe
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Build Status](https://github.com/PathVisio/pathvisio/actions/workflows/ant.yml/badge.svg)](https://github.com/PathVisio/pathvisio/actions/workflows/ant.yml)

*********************
PROJECT STRUCTURE
Expand Down

0 comments on commit 471fde3

Please sign in to comment.