summaryrefslogtreecommitdiff
path: root/.github/workflows/ant-build-pull-request.yaml
blob: 4c4441449618c6510bc269c3e3755c6975ba9449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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