Bump actions/checkout from 3.5.3 to 3.6.0 (#380) #893
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
# 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/[email protected] | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgirepository1.0-dev | |
python -m pip install --upgrade pip | |
pip install -e .[server] -r requirements-test.txt | |
- name: Flake8 | |
run: flake8 scripts/ matter_server/ | |
- name: Black | |
run: black --check scripts/ matter_server/ | |
- name: isort | |
run: isort --check scripts/ matter_server/ | |
- name: pylint | |
run: pylint matter_server/ | |
- name: mypy | |
run: mypy matter_server/ | |
test: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.10" | |
- "3.11" | |
steps: | |
- name: Check out code from GitHub | |
uses: actions/[email protected] | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgirepository1.0-dev | |
python -m pip install --upgrade pip | |
pip install -e .[server] -r requirements-test.txt | |
- name: Pytest | |
run: pytest --durations 10 --cov-report term-missing --cov=matter_server --cov-report=xml tests/server/ |