2022-02-02 19:48:15 +00:00
|
|
|
name: Code check
|
2021-07-12 18:28:35 +00:00
|
|
|
|
2022-09-08 13:29:28 +00:00
|
|
|
on:
|
2021-07-12 18:28:35 +00:00
|
|
|
push:
|
|
|
|
branches: [master, "release/*"]
|
|
|
|
pull_request:
|
|
|
|
branches: [master, "release/*"]
|
2022-11-03 07:29:20 +00:00
|
|
|
paths:
|
2022-11-26 01:16:48 +00:00
|
|
|
- ".actions/**"
|
2022-11-03 07:29:20 +00:00
|
|
|
- ".github/workflows/code-checks.yml"
|
|
|
|
- "requirements/**"
|
|
|
|
- "src/**"
|
|
|
|
- "pyproject.toml" # includes mypy config
|
2022-11-26 01:16:48 +00:00
|
|
|
- "!requirements/docs.txt"
|
|
|
|
- "!requirements/*/docs.txt"
|
2022-11-16 10:07:02 +00:00
|
|
|
- "!*.md"
|
|
|
|
- "!**/*.md"
|
2021-07-12 18:28:35 +00:00
|
|
|
|
2022-02-02 19:48:15 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
|
|
|
|
cancel-in-progress: ${{ ! (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release/')) }}
|
|
|
|
|
2022-11-01 00:44:58 +00:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
2021-07-12 18:28:35 +00:00
|
|
|
jobs:
|
2022-11-01 00:44:58 +00:00
|
|
|
|
2021-11-10 16:59:10 +00:00
|
|
|
mypy:
|
2021-07-12 18:28:35 +00:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
2022-07-11 21:46:52 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-08-01 16:59:48 +00:00
|
|
|
- uses: actions/setup-python@v4
|
2022-03-11 09:20:47 +00:00
|
|
|
with:
|
2022-10-13 14:46:40 +00:00
|
|
|
python-version: '3.10.6'
|
2022-03-11 09:20:47 +00:00
|
|
|
|
|
|
|
# Note: This uses an internal pip API and may not always work
|
|
|
|
# https://github.com/actions/cache/blob/master/examples.md#multiple-oss-in-a-workflow
|
|
|
|
- name: Cache pip
|
2022-07-14 20:12:56 +00:00
|
|
|
uses: actions/cache@v3
|
2022-03-11 09:20:47 +00:00
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
2023-02-02 10:36:33 +00:00
|
|
|
key: pip-${{ hashFiles('requirements/pytorch/base.txt') }}
|
|
|
|
restore-keys: pip-
|
|
|
|
enableCrossOsArchive: true
|
2022-03-11 09:20:47 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2022-11-01 00:44:58 +00:00
|
|
|
pip install mypy==0.982 # TODO: pull this verion deom requirements/test.txt
|
2022-08-08 08:06:41 +00:00
|
|
|
pip install torch==1.12 --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
|
2022-06-21 15:11:33 +00:00
|
|
|
python ./requirements/pytorch/adjust-versions.py requirements/pytorch/extra.txt
|
2022-08-08 06:15:54 +00:00
|
|
|
# todo: adjust requirements for both code-bases
|
2022-10-22 11:20:49 +00:00
|
|
|
pip install \
|
2023-01-04 15:57:18 +00:00
|
|
|
-r requirements/fabric/base.txt \
|
2022-11-01 00:44:58 +00:00
|
|
|
-r requirements/pytorch/base.txt \
|
|
|
|
-r requirements/pytorch/extra.txt \
|
|
|
|
-r requirements/app/base.txt \
|
|
|
|
-r requirements/app/cloud.txt \
|
|
|
|
-r requirements/app/ui.txt \
|
2022-10-22 11:20:49 +00:00
|
|
|
--find-links https://download.pytorch.org/whl/cpu/torch_stable.html
|
2022-03-11 09:20:47 +00:00
|
|
|
pip list
|
|
|
|
|
2023-02-01 17:18:32 +00:00
|
|
|
- name: Build package
|
|
|
|
run: python setup.py build
|
|
|
|
|
2022-07-11 21:46:52 +00:00
|
|
|
- name: Check typing
|
2022-10-13 14:46:40 +00:00
|
|
|
run: |
|
|
|
|
mkdir .mypy_cache
|
|
|
|
mypy
|