Skip to content

chore: Continuous Integration (#2) #26

chore: Continuous Integration (#2)

chore: Continuous Integration (#2) #26

Workflow file for this run

name: CI Workflow
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Set up Docker
uses: docker/setup-buildx-action@v3
- name: Build
run: make build
- name: Run tests
run: make test