Skip to content

chore(deps): update crate-ci/typos action to v1.43.1 #1079

chore(deps): update crate-ci/typos action to v1.43.1

chore(deps): update crate-ci/typos action to v1.43.1 #1079

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2024-2026 Objectionary.com
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: mvn
'on':
push:
branches:
- master
paths-ignore: [ 'README.md' ]
pull_request:
branches:
- master
paths-ignore: [ 'README.md' ]
jobs:
mvn:
strategy:
matrix:
os: [ ubuntu-24.04 ]
java: [ 22 ]
runs-on: ${{ matrix.os }}
env:
LC_ALL: C
LANG: C
LANGUAGE: C
steps:
- uses: actions/checkout@v6
- run: |
sudo wget -q -O /usr/bin/phino http://phino.objectionary.com/releases/ubuntu-24.04/phino-latest
sudo chmod a+x /usr/bin/phino
- uses: actions/setup-java@v5
with:
distribution: 'zulu'
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-
- run: mvn clean install --errors -Dinvoker.skip --batch-mode
- run: mvn clean test -Pgradle