Skip to content

Bump JamesIves/github-pages-deploy-action from 4.5.0 to 4.6.0 #56

Bump JamesIves/github-pages-deploy-action from 4.5.0 to 4.6.0

Bump JamesIves/github-pages-deploy-action from 4.5.0 to 4.6.0 #56

Workflow file for this run

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 ]
env:
DEVELOPER_DIR: /Applications/Xcode_13.4.1.app/Contents/Developer
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