moved extension properties to kotlin-dsl package to bypass import in … #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Example | |
on: [ push, workflow_dispatch ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
module: ["examplekts", "examplegroovy"] | |
task: ["assemble", "uploadToAlpakaTeschtRelease --alpaka-dryrun"] | |
steps: | |
# Checkout repository | |
- name: Checkout | |
uses: actions/[email protected] | |
# Setup JDK environment | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
# Run the Gradle task | |
- name: Run :${{ matrix.module }}:${{ matrix.task }} | |
run: ./gradlew clean :${{ matrix.module }}:${{ matrix.task }} |