Skip to content

Commit

Permalink
Added linter build check
Browse files Browse the repository at this point in the history
  • Loading branch information
bsutherland333 committed Jan 10, 2025
1 parent b29d3a4 commit 10fe538
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v1
with:
python-version: '3.x'
architecture: 'x64'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build Documentation
run: |
mkdocs build -s

0 comments on commit 10fe538

Please sign in to comment.