Skip to content

Commit

Permalink
[PRMT-4316] Added submit-dependency-graph.yml GitHub Action.
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-nhs committed Dec 13, 2023
1 parent 0482cee commit 4be3fcf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/submit-dependency-graph.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Submit dependency graph
on:
push:

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Gradle to generate and submit dependency graphs
uses: gradle/gradle-build-action@v2
with:
dependency-graph: generate-and-submit
- name: Run a build and generate the dependency graph which will be submitted post-job
run: ./gradlew build -x integration -x test

0 comments on commit 4be3fcf

Please sign in to comment.