Skip to content

Commit

Permalink
Workflows
Browse files Browse the repository at this point in the history
- updated workflows to run when files change.
  • Loading branch information
carlkidcrypto committed Jan 6, 2024
1 parent e28c76e commit 3cbec61
Show file tree
Hide file tree
Showing 6 changed files with 74 additions and 12 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
37 changes: 29 additions & 8 deletions .github/workflows/sphinx_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,27 @@ 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: |
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
Expand All @@ -19,21 +38,23 @@ jobs:
with:
python-version: "3.10"

- name: Install python3 requirements...
- name: Install python3/os requirements...
uses: carlkidcrypto/[email protected]
with:
linux: cd /home/runner/work/purpleair_data_logger/purpleair_data_logger/ &&
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
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_data_logger/purpleair_data_logger/sphinx_docs_build ;
make html
linux: cd /home/runner/work/purpleair_data_logger/purpleair_data_logger/sphinx_docs_build;
mkdir source/_static;
mkdir source/_templates;
make clean && make html SPHINXOPTS="-W"

- uses: actions/upload-artifact@v4
with:
Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +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
Unit_Tests:
name: ${{ matrix.os }} using Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
if: needs.check-source-changes.outputs.run_job == 'true'
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 carlkidcrypto
Copyright (c) 2024 carlkidcrypto

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = purpleair_data_logger
version = 1.3.1
version = 1.3.2
license = MIT
author = Carlos Santos
author_email = [email protected]
Expand Down
4 changes: 2 additions & 2 deletions sphinx_docs_build/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
# -- Project information -----------------------------------------------------

project = "PurpleAir Data Logger(s)"
copyright = "2023, carlkidcrypto"
copyright = "2024, carlkidcrypto"
author = "carlkidcrypto"

# The full version, including alpha/beta/rc tags
release = "V1.3.0"
release = "V1.3.2"


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit 3cbec61

Please sign in to comment.