Merge pull request #6960 from adpi2/dependency-graph

Add dependency-graph workflow
This commit is contained in:
eugene yokota 2022-07-08 10:32:38 -04:00 committed by GitHub
commit 8aae00fb42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

14
.github/workflows/dependency-graph.yml vendored Normal file
View File

@ -0,0 +1,14 @@
# .github/workflows/dependency-graph.yml
name: Submit Dependency Graph
on:
push:
branches: [1.7.x] # default branch of the project
jobs:
submit-graph:
name: Submit Dependency Graph
runs-on: ubuntu-latest # or windows-latest, or macOS-latest
steps:
- uses: actions/checkout@v3
- uses: scalacenter/sbt-dependency-graph-action@v1
with:
scala-versions: 2.12.16