Skip to content

Release 0.0.1

Release 0.0.1 #2

Workflow file for this run

---
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 21
working-directory: ./client-lib
uses: actions/setup-java@v4

Check failure on line 23 in .github/workflows/actions.yml

View workflow run for this annotation

GitHub Actions / Java CI

Invalid workflow file

The workflow is not valid. .github/workflows/actions.yml (Line: 23, Col: 9): Unexpected value 'uses' .github/workflows/actions.yml (Line: 24, Col: 9): Unexpected value 'with'
with:
java-version: '21'
distribution: 'adopt'
cache: 'maven'
- name: Build with Maven
working-directory: ./client-lib
run: mvn clean install --file pom.xml