Skip to content

Update CI actions

Update CI actions #79

Workflow file for this run

name: CI for tycho build
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '17' ]
name: Java ${{ matrix.java }} compile
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Test
run: mvn clean verify --no-transfer-progress