Skip to content

build(deps): bump actions/checkout from 4.1.4 to 4.1.6 in the github-actions group #105

build(deps): bump actions/checkout from 4.1.4 to 4.1.6 in the github-actions group

build(deps): bump actions/checkout from 4.1.4 to 4.1.6 in the github-actions group #105

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
steps:
- name: "Fetch Sources"
uses: actions/[email protected]
- name: "Validate Gradle Wrapper"
uses: gradle/[email protected]
- name: "Setup Java 11"
uses: actions/[email protected]
with:
distribution: adopt
java-version: 11
cache: gradle
- name: "Setup gradle wrapper"
run: chmod +x gradlew
- name: "Run Tests"
run: ./gradlew check
- name: "Collect Tests Result of failed tests"
if: ${{ failure() }}
uses: actions/[email protected]
with:
name: tests-result
path: ${{ github.workspace }}/build/reports/tests
test-os-matrix:
name: "Test with OS matrix"
if: github.ref == 'refs/heads/main'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
- os: macos-latest
steps:
- name: "Fetch Sources"
uses: actions/[email protected]
- name: "Validate Gradle Wrapper"
uses: gradle/[email protected]
- name: "Setup Java 11"
uses: actions/[email protected]
with:
distribution: adopt
java-version: 11
cache: gradle
- name: "Setup gradle wrapper"
run: chmod +x gradlew
- name: "Run Tests"
run: ./gradlew check
- name: "Collect Tests Result of failed tests"
if: ${{ failure() }}
uses: actions/[email protected]
with:
name: tests-result
path: ${{ github.workspace }}/build/reports/tests