Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Bump io.javalin:javalin from 5.6.0 to 5.6.2 #13

Bump io.javalin:javalin from 5.6.0 to 5.6.2

Bump io.javalin:javalin from 5.6.0 to 5.6.2 #13

Workflow file for this run

# Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.
name: build
on: [push]
jobs:
build:
strategy:
matrix:
# Use these Java versions
java: [
17, # Current Java LTS & minimum supported by Minecraft
]
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: setup jdk ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: build
run: mvn package
- name: capture build artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: target/dist/