aw-lb example updates #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: validate source examples | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
validate_source_examples: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
architecture: 'x64' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
pip install -r .requirements.txt | |
- name: Validate CIViC Examples | |
run: | | |
python3 examples/source_validation.py --source civic | |
- name: Validate MOA Examples | |
run: | | |
python3 examples/source_validation.py --source moa |