10000 a) MessageProcessor Hub simplified to a messageProcessor · grookage/leia@ab21826 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Message Executor with a default implementation #89

Message Executor with a default implementation

Message Executor with a default implementation #89

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
cache: maven
distribution: 'temurin'
- name: Build with Maven
run: mvn -B clean package --file pom.xml
0