Skip to content

Bump JamesIves/github-pages-deploy-action from 4.4.2 to 4.4.3 #45

Bump JamesIves/github-pages-deploy-action from 4.4.2 to 4.4.3

Bump JamesIves/github-pages-deploy-action from 4.4.2 to 4.4.3 #45

Workflow file for this run

name: Semver Test
on:
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@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 11
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