feat!: get rid of cartridges directory (#92203) #162
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
# This workflow will build a Java project with Gradle | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
environment: CIRelease | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ 'ubuntu-latest', 'windows-latest' ] | |
runs-on: ${{ matrix.os }} | |
permissions: | |
checks: write | |
pull-requests: write | |
name: Build & Test with Java ${{ matrix.Java }} (${{ matrix.os }}) | |
steps: | |
- name: Setup | |
uses: IntershopCommunicationsAG/.github/actions/[email protected] | |
- name: Build | |
uses: IntershopCommunicationsAG/.github/actions/[email protected] |