Add dependency-graph workflow

This commit is contained in:
Adrien Piquerez 2022-07-07 10:50:17 +02:00
parent dd9a6ff90e
commit 321ae96847
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