Skip to content

Update teatimeguest/setup-texlive-action action to v2.6.0 #4055

Update teatimeguest/setup-texlive-action action to v2.6.0

Update teatimeguest/setup-texlive-action action to v2.6.0 #4055

Workflow file for this run

---
name: mvn
on:
push:
branches:
- master
paths-ignore: ['paper/**', 'sandbox/**']
pull_request:
branches:
- master
paths-ignore: ['paper/**', 'sandbox/**']
concurrency:
group: mvn-${{ github.ref }}
cancel-in-progress: true
jobs:
mvn:
name: mvn
strategy:
matrix:
os: [ubuntu-20.04, windows-2022, macos-12]
java: [11, 20]
runs-on: ${{ matrix.os }}
env:
CONVERT_PATH: /tmp/antlr4-to-bnf-converter
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- run: |
mkdir -p $CONVERT_PATH
wget --quiet http://public.yegor256.com/convert.zip -O /tmp/convert.zip
unzip -o -d $CONVERT_PATH /tmp/convert.zip
if: matrix.os == 'ubuntu-20.04'
- run: mvn clean install -Pqulice --errors --batch-mode