Skip to content

Feature: Break on fallback to default #739

Feature: Break on fallback to default

Feature: Break on fallback to default #739

Workflow file for this run

name: nf-co2footprint CI
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
name: Build nf-co2footprint
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
java_version: [17, 23]
steps:
- name: Check environment variables
run: env | sort
- name: Checkout PR branch
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: true
- name: Setup Java ${{ matrix.java_version }}
uses: actions/setup-java@v4
with:
java-version: ${{matrix.java_version}}
architecture: x64
distribution: 'temurin'
- name: Compile plugin
run: ./gradlew assemble
- name: Execute checks / tests
run: ./gradlew check --no-daemon --info
- name: Summarize tests results
uses: jeantessier/test-summary-action@v1
if: ${{ always() }}