Skip to content

Add a .gitattributes file to normalize line endings #2

Add a .gitattributes file to normalize line endings

Add a .gitattributes file to normalize line endings #2

name: "Copilot Setup Steps"
on:
workflow_dispatch:
push:
paths:
- .github/workflows/copilot-setup-steps.yml
pull_request:
paths:
- .github/workflows/copilot-setup-steps.yml
jobs:
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: "17"
distribution: "temurin"
cache: "maven"
- name: Install
run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
- name: Download external sources
run: mvn generate-resources -Pdownload-external-src