Skip to content

Fix dependencies; add test build to ci #1

Fix dependencies; add test build to ci

Fix dependencies; add test build to ci #1

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches: [master]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/action@v3.0.0
test_build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- name: Install Python requirements
run: pip install -r requirements.txt
- name: Build documentation
run: mkdocs build
env:
DEFAULT_LANGUAGE_ONLY: true