Skip to content

Добавлены права на публикацию результатов сборки pull request #22

Добавлены права на публикацию результатов сборки pull request

Добавлены права на публикацию результатов сборки pull request #22

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
name: Build
on: [push, pull_request_target]
jobs:
build:
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
pull-requests: write
repository-projects: write
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Publish Test Report
if: success() || failure()
uses: scacap/action-surefire-report@v1