Skip to content

update seqcolarraysetinherent #20

update seqcolarraysetinherent

update seqcolarraysetinherent #20

Workflow file for this run

name: Generate and push JSON schema list
on:
push:
branches:
- master
jobs:
generate-and-push-json:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Generate JSON
run: python index_contents.py
- name: Commit and push changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Generated JSON schema list"
git push