Skip to content

Add markdown doc testing #135

Add markdown doc testing

Add markdown doc testing #135

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_run:
workflows: ["Deploy static content to Pages and convert Markdown to HTML"]
types:
- completed
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2 # checkout the repository content to github runner.
- name: setup python
uses: actions/setup-python@v2
with:
python-version: 3.12 #install the python needed
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: execute py script # run file
run: |
python test-deduce.py