FIX: Remove verify warning, by setting verify to true. #845
Workflow file for this run
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
name: Python Package using Conda | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Cancel concurrent runs | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
ARM_USERNAME: ${{ secrets.ARM_USERNAME }} | |
ARM_PASSWORD: ${{ secrets.ARM_PASSWORD }} | |
AIRNOW_API: ${{ secrets.AIRNOW_API }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COVERALLS_TOKEN: ${{ secrets.COVERLALLS_REPO_TOKEN }} | |
jobs: | |
build: | |
name: ${{ matrix.os }}-${{ matrix.python-version }} | |
if: github.repository == 'ARM-DOE/ACT' | |
runs-on: ${{ matrix.os }}-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
os: [macOS, ubuntu, Windows] | |
inlcude: | |
- os: macos-latest | |
PLAT: arm64 | |
INTERFACE64: "" | |
platform: [x64] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Conda Environment | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
environment-file: ./continuous_integration/environment_actions.yml | |
environment-name: act_env | |
- name: Install ACT | |
run: | | |
python -m pip install -e . --no-deps --force-reinstall | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
# flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
# Switching back to original flake | |
python -m flake8 --max-line-length=127 --ignore=F401,E402,W504,W605,F403 | |
- name: Test with pytest | |
run: | | |
python -m pytest -v --mpl --cov=./ --cov-report=xml | |
- name: Upload code coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
file: ./coverage.xml | |
flags: unittests | |
env_vars: OS,PYTHON | |
name: codecov-umbrella | |
fail_ci_if_error: false |