Skip to content

updating references #55

updating references

updating references #55

Workflow file for this run

name: CI
on:
- push
- pull_request
#schedule:
# * is a special character in YAML so you have to quote this string
# - cron: '*/5 * * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test Build
run: |
mkdocs build -s