generated from knoriy/deep-learning-project-template
-
Notifications
You must be signed in to change notification settings - Fork 3
70 lines (59 loc) · 2.32 KB
/
ci-testing.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: CI testing
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
on:
# Trigger the workflow on push or pull request, but only for the master branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019]
python-version: [3.7]
# Timeout: https://stackoverflow.com/a/59076067/4521646
timeout-minutes: 35
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
# # # Github Actions: Run step on specific OS: https://stackoverflow.com/a/57948488/4521646
# # - name: Setup macOS
# # if: runner.os == 'macOS'
# # run: |
# # brew install libomp # https://github.com/pytorch/pytorch/issues/20030
# # # 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: Get pip cache
# # id: pip-cache
# # run: |
# # python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)"
# # - name: Cache pip
# # uses: actions/cache@v2
# # with:
# # path: ${{ steps.pip-cache.outputs.dir }}
# # key: ${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('requirements.txt') }}
# # restore-keys: |
# # ${{ runner.os }}-py${{ matrix.python-version }}-
# # - name: Install dependencies
# # run: |
# # pip install --requirement requirements.txt --upgrade --quiet --find-links https://download.pytorch.org/whl/cpu/torch_stable.html --use-feature=2020-resolver
# # pip install --requirement tests/requirements.txt --quiet --use-feature=2020-resolver
# # python --version
# # pip --version
# # pip list
# # shell: bash
# # - name: Tests
# # run: |
# # coverage run --source project -m py.test project tests -v --junitxml=junit/test-results-${{ runner.os }}-${{ matrix.python-version }}.xml
# # - name: Statistics
# # if: success()
# # run: |
# # coverage report