Skip to content

Bump org.slf4j:slf4j-api from 2.0.12 to 2.0.13 in /hello-websocket-java/springboot/client #23

Bump org.slf4j:slf4j-api from 2.0.12 to 2.0.13 in /hello-websocket-java/springboot/client

Bump org.slf4j:slf4j-api from 2.0.12 to 2.0.13 in /hello-websocket-java/springboot/client #23

Workflow file for this run

name: Building
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Rust
run: cargo build --manifest-path hello-websocket-rust/Cargo.toml
- name: Run Rust tests
run: cargo test --manifest-path hello-websocket-rust/Cargo.toml --verbose
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Build server with Maven
run: mvn -B package --file hello-websocket-java/springboot/server/pom.xml
- name: Build client with Maven
run: mvn -B package --file hello-websocket-java/springboot/client/pom.xml