Match more YaCy versions #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Script to build after pull request | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: github.repository == 'yacy/yacy_search_server' | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Build with ant | |
run: ant clean all dist |