Skip to content

Merge pull request #27 from datazip-inc/staging #46

Merge pull request #27 from datazip-inc/staging

Merge pull request #27 from datazip-inc/staging #46

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time

Check failure on line 1 in .github/workflows/deps.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deps.yml

Invalid workflow file

(Line: 10, Col: 4): Unexpected value ''
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Deps CI with Maven
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# TODO: enable dependency checking
on:
# push:
# paths:
# - ".github/workflows/**"
# - "dev/dep**"
# - "**/pom.xml"
# - "pom.xml"
# - "tools/maven/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
jdk: [ '17' ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.jdk }}
distribution: 'temurin'
cache: maven
check-latest: false
- name: Maven Check dependency list
run: ./dev/dependencies.sh --check