Skip to content

Update pipeline_releases.md #335

Update pipeline_releases.md

Update pipeline_releases.md #335

Workflow file for this run

name: "Check docs"
on:
- pull_request
- push
jobs:
Prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
- name: Install prettier
run: npm install -g prettier
- name: Run Prettier
run: prettier --check ${GITHUB_WORKSPACE}
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
architecture: "x64"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
- name: check docs
run: |
cd ${GITHUB_WORKSPACE}/docs
make html