PathVisio / pathvisio

PathVisio - pathway editor, visualization and analysis software
http://www.pathvisio.org
Apache License 2.0
22 stars 21 forks source link

Some root cleanup #200

Closed egonw closed 1 year ago

larsgw commented 1 year ago

To replace Travis we can use:

name: Java CI

on:
  push:
  pull_request:

jobs:
  build:

    runs-on: ubuntu-latest

    strategy:
      matrix:
        openjdk: [8, 11, 14]

    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

With a badge: Java CI

egonw commented 1 year ago

@larsgw, I think we can have different compile scenario's for different branches, right?

larsgw commented 1 year ago

Yes, maybe even just by changing the yml file in that branch.

mkutmon commented 1 year ago

so should we make more changes or can the pull request already be merged?

egonw commented 1 year ago

This can be merged.