Skip to content

Commit

Permalink
Add 'validate-dependency-specification' job to dm workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
csadorf committed Mar 5, 2020
1 parent 18de910 commit 3d9bfb5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/dm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,26 @@ on:

jobs:

validate-dependency-specification:
# Note: The specification is also validated by the pre-commit hook.

runs-on: ubuntu-latest
timeout-minutes: 5

steps:
- uses: actions/checkout@v2

- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7

- name: Install dm-script dependencies
run: pip install click~=7.0 pyyaml~=5.1 toml

- name: Validate
run: python ./utils/dependency_management.py validate-all

install-with-pip:

runs-on: ubuntu-latest
Expand Down

0 comments on commit 3d9bfb5

Please sign in to comment.