Skip to content

Commit

Permalink
Remove data files and add validator
Browse files Browse the repository at this point in the history
  • Loading branch information
jsangmeister committed Feb 5, 2024
1 parent 0ab3b36 commit 0ac662a
Show file tree
Hide file tree
Showing 9 changed files with 397 additions and 2,585 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: 2
updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
assignees:
- "jsangmeister"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
assignees:
- "jsangmeister"
29 changes: 29 additions & 0 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Continuous Integration

on:
pull_request:
branches:
- main
- 'feature/**'

env:
PYTHON_VERSION: 3.10.x

jobs:
validate-models:
name: Validate models.yml
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install requirements
run: pip install -r models_validator/requirements.txt

- name: Validate models.yml
run: python models_validator/validate.py
Loading

0 comments on commit 0ac662a

Please sign in to comment.