Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

ECDC-3518-only-partial-depends-on-support #85

ECDC-3518-only-partial-depends-on-support

ECDC-3518-only-partial-depends-on-support #85

Workflow file for this run

name: MacOs
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint with flake8
run: |
flake8 --exclude definitions,nx-class-documentation
- name: Run non-ui tests
run: |
pytest tests
- name: Run ui tests
run: |
pytest ui_tests