Skip to content

Commit

Permalink
Add simple github action
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed Sep 27, 2022
1 parent 909e1b0 commit 6fc850a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build Documentation

on:
pull_request:
branches:
- main
push:
- main

jobs:
docs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: 'actions/checkout@v3'

- uses: 'actions/setup-python@v4'
with:
python-version: '3.10'

- run: |
set -e
python --version
python -m pip install --upgrade pip tox
name: Setup Environment
- id: build
run: |
tox -e build
name: Run Tox

0 comments on commit 6fc850a

Please sign in to comment.