Skip to content

Synchronize border and color classes with BS 5.3.2, add Color and background helper, behavior improvements #204

Synchronize border and color classes with BS 5.3.2, add Color and background helper, behavior improvements

Synchronize border and color classes with BS 5.3.2, add Color and background helper, behavior improvements #204

Workflow file for this run

name: Java CI
on:
push:
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
- name: Cache Local Maven Repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B package --file pom.xml