A push event from mccroweyclinton-EPA caused a rebuilding and retesting of the pyaqsapi package via GitHub actions #1
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 | |
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 config --add channels conda-forge | |
conda update --yes -n base conda | |
conda install --yes -n base conda-libmamba-solver | |
conda config --set solver libmamba | |
conda env update -n base --file=environment.yml -vv | |
conda init | |
pip install build | |
- name: Display Python version and system info | |
run: python -c "import platform; print(platform.uname())" | |
- name: build and install pyaqsapi in a test environment | |
run: | | |
python -m build . | |
pip install . | |
- name: build apidocs | |
run: | | |
cd docs | |
make clean | |
sphinx-apidoc --ext-autodoc -o . ../pyaqsapi/ | |
make html | |
make html | |
cd .. | |
- name: test_package | |
env: | |
AQSkey: ${{ secrets.AQSKEY }} | |
AQSuser: ${{ secrets.AQSUSER }} | |
run: pytest |