mirror of
https://github.com/imgfloat/server.git
synced 2026-02-05 11:49:25 +00:00
20 lines
341 B
YAML
20 lines
341 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up JDK
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: temurin
|
|
java-version: '17'
|
|
cache: maven
|
|
- name: Build and test
|
|
run: mvn -B verify
|