Skip to content

Commit

Permalink
Added MacOS to CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
EvgeniiTitov committed Dec 8, 2022
1 parent 8d2fc85 commit 5b325d7
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/code-checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:

Test-Linux:
test-linux:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Run tests
run: make test

Test-Windows:
test-windows:
runs-on: windows-latest
strategy:
matrix:
Expand All @@ -42,6 +42,26 @@ jobs:
- name: Run tests
run: make test

test-macOS:
runs-on: macos-latest
strategy:
matrix:
python-version: [ "3.9" ]

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 dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: make test


Run-Linters:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 5b325d7

Please sign in to comment.