remove lincheck, change test repeats to 10 #3
This file contains hidden or 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 for Task 4 | |
on: | |
push: | |
paths: | |
- 'task4/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Set up JDK' | |
uses: 'actions/setup-java@v4' | |
with: | |
java-version: '20' | |
distribution: 'zulu' | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./task4/gradlew | |
- name: Grant execute permission for test script | |
run: chmod +x ./task4/run_task4_tests.sh | |
- name: Build & test | |
working-directory: ./task4 | |
run: ./run_task4_tests.sh |