Skip to content

fix: uncorrect python require version in setup #4

fix: uncorrect python require version in setup

fix: uncorrect python require version in setup #4

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: magicdoc
on:
push:
branches:
- "main"
paths-ignore:
- "cmds/**"
- "**.md"
pull_request:
branches:
- "main"
paths-ignore:
- "cmds/**"
- "**.md"
workflow_dispatch:
jobs:
pdf-test:
runs-on: doc
timeout-minutes: 180
strategy:
fail-fast: true
steps:
- name: magicdoc
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: check-requirements
run: |
changed_files=$(git diff --name-only -r HEAD~1 HEAD)
echo $changed_files
if [[ $changed_files =~ "requirements.txt" ]] || [[ $changed_files =~ "requirements-qa.txt" ]]; then
pip install -r requirements.txt
pip install -r requirements-qa.txt
fi
- name: get-benchmark-result
run: |
echo "start test"
cd tools && python benchmark.py