Skip to content

Merge pull request #4859 from tihiyn/4654 #10295

Merge pull request #4859 from tihiyn/4654

Merge pull request #4859 from tihiyn/4654 #10295

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2016-2026 Objectionary.com
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: mvn
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
mvn:
strategy:
matrix:
os: [ubuntu-24.04, windows-2022, macos-15]
java: [17, 23]
exclude:
- os: windows-2022
java: 17
- os: macos-15
java: 17
runs-on: ${{ matrix.os }}
env:
CONVERT_PATH: /tmp/antlr4-to-bnf-converter
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- uses: JesseTG/[email protected]
with:
path: ~/.m2/repository/org/eolang
- run: mvn clean install -PskipITs --errors --batch-mode