Sollbuchungen zusammenfassen, Rechnung überarbeitet #112
Workflow file for this run
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
# 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: OpenJVerein build check | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, edited] | |
paths: | |
- 'plugin.xml' | |
- 'build/**' | |
- 'lib/**' | |
- 'lib.src/**' | |
- 'src/**' | |
jobs: | |
call-reusable-workflow: | |
uses: ./.github/workflows/reusable-build.yml | |
build-check: | |
needs: call-reusable-workflow | |
runs-on: ubuntu-latest | |
steps: | |
- name: Restore cached tags and jars | |
id: cache-tags-jars | |
uses: actions/cache@v4 | |
with: | |
path: | | |
./cached-tags | |
jameica | |
hibiscus | |
key: ${{ runner.os }}-${{ github.repository_id }} | |
- name: Checkout openjverein | |
uses: actions/checkout@v4 | |
with: | |
path: jverein | |
- name: Build openjverein plugin | |
working-directory: ./ | |
run: ant -noinput -buildfile jverein/build/build.xml compile |