A push event from mccroweyclinton-EPA caused a rebuilding and retesting of the pyaqsapi package via GitHub actions #61
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
# -*- coding: utf-8 -*- | |
name: build_and_test_pyaqsapi_on_ubuntu | |
run-name: A push event from ${{ github.actor }} caused a rebuilding and | |
retesting of the pyaqsapi package via GitHub actions | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
setup_environment: | |
runs-on: ubuntu-latest | |
#runs-on: matrix.os | |
env: | |
AQSkey: ${{ secrets.AQSKEY }} | |
AQSuser: ${{ secrets.AQSUSER }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
#os: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
- name: install_dependencies | |
run: | | |
conda update -n base conda | |
conda install -n base conda-libmamba-solver | |
conda config --set solver libmamba | |
conda install -c conda-forge --yes --file=environment.yaml | |
- name: Display Python version and system info | |
run: python -c "import platform; print(platform.uname())" | |
- name: Display Python version and system info | |
run: | | |
python -m build . | |
pip install . | |
# the dependencies required for sphinxcontrib.spelling | |
# do not seem to be maintained anymore | |
# - name: fail the build in case of any misspelled words | |
# run: | | |
# cd docs | |
# #delete the previous spelling output if this file exists | |
# if [ -s "./_build/spelling/output.txt" ]; then | |
# rm ./_build/spelling/output.txt; fi | |
# make spelling | |
# if [ -s "./_build/spelling/output.txt"] ; then | |
# echo ++++++++++++++++++++ Misspelled words ++++++++++++++++++++ | |
# cat "./_build/spelling/output.txt"; fi | |
# cd .. | |
- name: build apidocs | |
run: | | |
cd docs | |
sphinx-apidoc --ext-autodoc -o . ../pyaqsapi/ | |
make html | |
cd .. | |
- name: test_package | |
env: | |
AQSkey: ${{ secrets.AQSKEY }} | |
AQSuser: ${{ secrets.AQSUSER }} | |
run: pytest |