CI Testing #945
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: CI Testing | |
on: | |
push: | |
branches: [ '**' ] | |
pull_request: | |
branches: [ '**' ] | |
schedule: | |
- cron: '22 12 * * *' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ['3.10', '3.11', '3.12', 3.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install package and dev tools | |
run: | | |
python -m pip install -e ".[dev]" | |
- name: Github preferred 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=17 --max-line-length=127 --statistics | |
- name: Alternative lint with Flake8 | |
run: | | |
flake8 . | |
- name: Test with pytest | |
run: | | |
pytest -v --cache-clear | |
- name: Check help menu | |
run: | | |
meraki -h | |
- name: Check version | |
run: | | |
meraki -v | |
- name: Perform a software upgrade | |
run: | | |
meraki upgrade --upgrade-all --no-confirm | |
- name: Check command help menu | |
run: | | |
meraki organizations getOrganizations -h | |
- name: Check code coverage | |
run: | | |
coverage run -m pytest | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v3 |