Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Update all dependencies #448

Update all dependencies

Update all dependencies #448

Workflow file for this run

name: "Build main"
on:
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
env:
GRADLE_OPTS: -Dorg.gradle.jvmargs="-Xmx5g -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'macos-latest', 'ubuntu-latest', 'windows-latest' ]
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
# For watchOS x86 simulator. Remove with Kotlin 1.8.
- uses: maxim-lobanov/setup-xcode@v1
if: matrix.os == 'macos-latest'
with:
xcode-version: '13.4.1'
- name: Set up Java
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 11
- name: Build
uses: gradle/[email protected]
with:
arguments: build --scan --full-stacktrace
- name: Upload reports
if: always()
uses: actions/[email protected]
with:
name: 'reports-${{ matrix.os }}'
path: '**/build/reports/**'