Skip to content

Merge pull request #63 from binaryeq/dependabot/maven/main/org.antlr-… #86

Merge pull request #63 from binaryeq/dependabot/maven/main/org.antlr-…

Merge pull request #63 from binaryeq/dependabot/maven/main/org.antlr-… #86

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
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Java CI with Maven
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# Install Python to run pre-commit hooks for linting GitHub Actions and other files.
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: '3.11'
- name: Install and run pre-commit hooks
run: |
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pre-commit install
pre-commit run --all-files
# Install Java and Souffle.
- name: Set up JDK 17
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Install Souffle
shell: bash
run: |
echo "Installing system dependency: souffle"
wget https://github.com/souffle-lang/souffle/releases/download/2.5/x86_64-ubuntu-2404-souffle-2.5-Linux.deb -O ./souffle.deb
sudo apt install ./souffle.deb
rm ./souffle.deb
command -v souffle
# Build the artifact.
- name: Build with Maven
run: mvn -B package --file pom.xml
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
#- name: Update dependency graph
# uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6