Skip to content

Merge pull request #24 from multiformats/dependabot/github_actions/ac… #39

Merge pull request #24 from multiformats/dependabot/github_actions/ac…

Merge pull request #24 from multiformats/dependabot/github_actions/ac… #39

Workflow file for this run

name: Java Maven CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
- name: Build with Maven
run: mvn compile
- name: Run tests with Maven
timeout-minutes: 10
run: mvn test