Issue #1: fix paths to execute on Linux wihout problems #9
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: Java CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '21' | |
# - name: Grant execute permission for setup script | |
# run: chmod +x setup.sh | |
# | |
# - name: Run setup script | |
# run: ./setup.sh | |
- name: Build with Gradle | |
run: cd extractor && ./gradlew clean build | |
- name: Check git changes | |
run: ./github/worflows/commands.sh git-diff |