forked from overlay-market/pystable
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (34 loc) · 906 Bytes
/
python-macOS.yaml
File metadata and controls
36 lines (34 loc) · 906 Bytes
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
name: pystable-macOS
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ci-macOS:
strategy:
fail-fast: false
matrix:
python-version: [3.9]
poetry-version: [1.1.6]
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install gsl on macOS
run: brew install gsl
- name: Install Poetry
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Configure Poetry
shell: bash
run: python -m poetry config virtualenvs.in-project true
- name: Install dependencies
run: python -m poetry install
- name: Install nox
run: python -m pip install nox
- name: Run nox
run: nox