Bump JamesIves/github-pages-deploy-action from 4.6.3 to 4.6.4 #59
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
name: Semver Test | |
on: | |
push: | |
branches: [ '*', '!main' ] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ macos-latest, ubuntu-latest, windows-latest ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: zulu | |
- name: Cache Konan | |
uses: ./.github/actions/cache-konan | |
- name: Cache Gradle | |
uses: ./.github/actions/cache-gradle | |
- name: Run all tests | |
run: ./gradlew allTests --stacktrace | |
shell: bash |