Skip to content

Add INFORMATION_SCHEMA tables #1

Add INFORMATION_SCHEMA tables

Add INFORMATION_SCHEMA tables #1

name: Documentation parser
on: [pull_request, workflow_dispatch]
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Change directory to documentation_parser
run: cd documentation_parser
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run pytest
run: pytest