Skip to content

Remove static keyword #241

Remove static keyword

Remove static keyword #241

Workflow file for this run

# SPDX-FileCopyrightText: 2023 Alec Delaney
#
# SPDX-License-Identifier: MIT
name: Build CI
on: [pull_request, push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Checkout Current Repo
uses: actions/checkout@v3
with:
submodules: true
- name: Pip install pre-commit
run: |
pip install --force-reinstall pre-commit
- name: Pip install documentation requirements
run: |
pip install --force-reinstall -r requirements-doc.txt
- name: Library version
run: git describe --dirty --always --tags
- name: Pre-commit hooks
run: |
pre-commit run --all-files
#- name: Build docs
# working-directory: docs
# run: sphinx-build -E -W -b html . _build/html