Skip to content

webhook: Use Maps instead of Lists in configuration #301

webhook: Use Maps instead of Lists in configuration

webhook: Use Maps instead of Lists in configuration #301

Workflow file for this run

name: Build
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11.4"
- run: python --version
- name: Set up Poetry
uses: Gr1N/setup-poetry@v8
with:
poetry-version: "1.1.7"
- run: poetry --version
- name: Build with Maven and run the tests
run: mvn --batch-mode --update-snapshots verify -Dgpg.skip=true