Skip to content

PSES termination together with the IDE process #127

PSES termination together with the IDE process

PSES termination together with the IDE process #127

Workflow file for this run

name: Main
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: '0 0 * * 0' # Every Sunday
jobs:
main:
runs-on: ${{ matrix.image }}
timeout-minutes: 15
strategy:
matrix:
image: [macos-12, ubuntu-22.04, windows-2022]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: "Validate Gradle wrapper"
uses: gradle/wrapper-validation-action@v1
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-home-cache-cleanup: true
- name: Build
run: ./gradlew build
- name: 'Upload test results'
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}.test-results
path: build/reports/tests
if: ${{ always() }}
- name: 'Upload test logs'
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}.test-logs
path: build/idea-sandbox/system-test/log
if: ${{ always() }}