Merge branch 'dev' into main #36
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 | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '**.kt' | |
- '**/src/test/resources/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '**.kt' | |
- '**/src/test/resources/**' | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
cache: gradle | |
- name: Install wcstools | |
run: sudo apt install -y wcstools | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Test | |
run: ./gradlew test --continue -Dgithub=true |