2021-08-17 05:50:41 +00:00
|
|
|
# Workflow lints, and checks format in parallel then runs tests on all platforms
|
2021-08-17 05:31:15 +00:00
|
|
|
|
|
|
|
name: Default CI/CD
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
2021-08-17 05:50:41 +00:00
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-01-25 01:27:29 +00:00
|
|
|
- name: Set up Python 3.10
|
2021-08-17 05:50:41 +00:00
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
2022-01-25 01:30:42 +00:00
|
|
|
python-version: '3.10'
|
2021-08-17 05:50:41 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt -r requirements-extra.txt
|
|
|
|
- name: Lint with flake8
|
|
|
|
run: |
|
|
|
|
flake8 .
|
|
|
|
format:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-01-25 01:27:29 +00:00
|
|
|
- name: Set up Python 3.10
|
2021-08-17 05:50:41 +00:00
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
2022-01-25 01:30:42 +00:00
|
|
|
python-version: '3.10'
|
2021-08-17 05:50:41 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt -r requirements-extra.txt
|
|
|
|
- name: Check format with black
|
|
|
|
run: |
|
|
|
|
black .
|
|
|
|
test:
|
|
|
|
needs: [lint, format]
|
2021-08-17 05:33:54 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-08-17 05:31:15 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2022-03-15 10:09:58 +00:00
|
|
|
python-version: [3.7, 3.8, 3.9, '3.10']
|
2021-08-17 05:31:15 +00:00
|
|
|
exclude:
|
2021-08-17 05:50:41 +00:00
|
|
|
- os: macos-latest
|
|
|
|
python-version: 3.7
|
2022-01-25 01:27:29 +00:00
|
|
|
- os: macos-latest
|
|
|
|
python-version: 3.8
|
2022-03-15 10:09:58 +00:00
|
|
|
- os: macos-latest
|
|
|
|
python-version: 3.9
|
2021-08-17 05:31:15 +00:00
|
|
|
- os: windows-latest
|
2021-08-17 05:50:41 +00:00
|
|
|
python-version: 3.7
|
2022-01-25 01:27:29 +00:00
|
|
|
- os: windows-latest
|
|
|
|
python-version: 3.8
|
2022-03-15 10:09:58 +00:00
|
|
|
- os: windows-latest
|
|
|
|
python-version: 3.9
|
2021-08-17 05:31:15 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt -r requirements-extra.txt
|
|
|
|
- name: Build python modules
|
|
|
|
run: |
|
|
|
|
python build.py --modules
|
|
|
|
- name: Run tests
|
|
|
|
run: |
|
|
|
|
pytest core hscommon
|
2022-03-04 07:14:01 +00:00
|
|
|
- name: Upload Artifacts
|
|
|
|
if: matrix.os == 'ubuntu-latest'
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: modules ${{ matrix.python-version }}
|
|
|
|
path: ${{ github.workspace }}/**/*.so
|