1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
# This workflow will install Python dependencies, run tests and lint
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Check out code from GitHub
uses: actions/checkout@v5.0.0
- name: Set up Python
uses: actions/setup-python@v6.0.0
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip build setuptools
pip install . .[test]
- name: Lint/test with pre-commit
run: SKIP=no-commit-to-branch pre-commit run --all-files
test:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
- "3.12"
steps:
- name: Check out code from GitHub
uses: actions/checkout@v5.0.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip build setuptools
pip install .[test]
- name: Pytest
run: pytest --durations 10 --cov-report term-missing --cov=aiohue --cov-report=xml tests/
|