Skip to content

chore: test cicd

chore: test cicd #3

Workflow file for this run

# This workflow will build a Java project with Ant
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-ant
name: Java CI
on:
push:
branches: [ "amy/ci_cd" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Prepare
run: |
curl https://drive.switch.ch/index.php/s/JmxKrMLdqGeriGV/download --output plugins.zip
unzip plugins.zip
- name: Build with Ant
run: |
ant build "-DECLIPSE_HOME=$(pwd)"
ant run-test "-DECLIPSE_HOME=$(pwd)"