-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* V1.1.3 - prepping for a maintenance release. * Run only when needed - attmempting to run only when needed for workflows. * - a few more checks for source code changes * workflows - a few more workflow tweaks * Workflows - more work changes * Workflow - one more tweaks * Workflows - even more workflows tweaks. * Docs - uploading new docs
- Loading branch information
1 parent
9857871
commit d184df9
Showing
36 changed files
with
372 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,29 @@ on: | |
branches: [ main ] | ||
|
||
jobs: | ||
check-source-changes: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
run_job: ${{ steps.changed-files.outputs.any_changed }} | ||
steps: | ||
- name: Checkout Sourcecode | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check for changes in source code | ||
id: changed-files | ||
uses: tj-actions/[email protected] | ||
with: | ||
files: | | ||
purpleair_api/*.py | ||
tests/*.py | ||
tests/*.txt | ||
setup.py | ||
setup.cfg | ||
black: | ||
runs-on: ubuntu-latest | ||
needs: check-source-changes | ||
if: needs.check-source-changes.outputs.run_job == 'true' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: psf/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: "Pull Request Sphinx Docs Check" | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
|
||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
check-source-changes: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
run_job: ${{ steps.changed-files.outputs.any_changed }} | ||
steps: | ||
- name: Checkout Sourcecode | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check for changes in source code | ||
id: changed-files | ||
uses: tj-actions/[email protected] | ||
with: | ||
files: | | ||
sphinx_docs_build/source/*.rst | ||
sphinx_docs_build/source/*.py | ||
sphinx_docs_build/*.txt | ||
sphinx_docs_build: | ||
runs-on: ubuntu-latest | ||
needs: check-source-changes | ||
if: needs.check-source-changes.outputs.run_job == 'true' | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python 3.10 env for sphinx... | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Install python3/os requirements... | ||
uses: carlkidcrypto/[email protected] | ||
with: | ||
linux: cd /home/runner/work/purpleair_api/purpleair_api/ && | ||
python -m pip install --upgrade wheel && | ||
python -m pip install --upgrade setuptools && | ||
python -m pip install --upgrade pip && | ||
python -m pip install -r sphinx_docs_build/requirements.txt && | ||
python -m pip install . --user; | ||
|
||
- name: Run sphinx... | ||
uses: carlkidcrypto/[email protected] | ||
with: | ||
linux: cd /home/runner/work/purpleair_api/purpleair_api/sphinx_docs_build; | ||
mkdir source/_static; | ||
mkdir source/_templates; | ||
make clean && make html SPHINXOPTS="-W" | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: HTML Documentation | ||
path: docs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,30 @@ on: | |
branches: [ main ] | ||
|
||
jobs: | ||
tests: | ||
check-source-changes: | ||
runs-on: ubuntu-latest | ||
|
||
outputs: | ||
run_job: ${{ steps.changed-files.outputs.any_changed }} | ||
steps: | ||
- name: Checkout Sourcecode | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check for changes in source code | ||
id: changed-files | ||
uses: tj-actions/[email protected] | ||
with: | ||
files: | | ||
purpleair_api/*.py | ||
tests/*.py | ||
tests/*.txt | ||
setup.py | ||
setup.cfg | ||
tests: | ||
runs-on: ubuntu-latest | ||
needs: check-source-changes | ||
if: needs.check-source-changes.outputs.run_job == 'true' | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
**/purpleair_api.egg-info/** | ||
test/.coverage | ||
test/coverage_reports/** | ||
**/.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.