Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on:
push:
branch:
- master
- main

name: 'Trigger: Push action'

Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/validate_expected_kcidb_submission.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
push:
branch:
- main

name: 'Validate: Expected KCIDB Submission'

jobs:
validate:
name: Validate KCIDB Submission
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r submission/examples/validate/requirements.txt
- name: Validate expected submission
run: |
cd submission/examples
python3 validate/validate.py
Loading