-
Notifications
You must be signed in to change notification settings - Fork 443
113 lines (112 loc) · 3.48 KB
/
ci.yaml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: Python Checks
on:
pull_request:
push:
branches:
- master
workflow_dispatch:
env:
CACHE_PATHS: |
~/.cache/huggingface
~/.cache/clip
~/.cache/imaginairy
~/.cache/torch
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4.5.0
with:
python-version: 3.9
- name: Cache dependencies
uses: actions/cache@v3.2.4
id: cache
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements-dev.txt') }}-lint
- name: Install Ruff
if: steps.cache.outputs.cache-hit != 'true'
run: grep -E 'ruff==' requirements-dev.txt | xargs pip install
- name: Lint
run: |
echo "::add-matcher::.github/pylama_matcher.json"
ruff --config tests/ruff.toml .
autoformat:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4.5.0
with:
python-version: 3.9
- name: Cache dependencies
uses: actions/cache@v3.2.4
id: cache
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements-dev.txt') }}-autoformat
- name: Install Black
if: steps.cache.outputs.cache-hit != 'true'
run: grep -E 'black==' requirements-dev.txt | xargs pip install
- name: Lint
run: |
black --diff --fast .
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.10"]
subset: ["1/10", "2/10", "3/10", "4/10", "5/10", "6/10", "7/10", "8/10", "9/10", "10/10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: requirements-dev.txt
- name: Install dependencies
run: |
python -m pip install --disable-pip-version-check -r requirements-dev.txt
python -m pip install --disable-pip-version-check .
- name: Get current date
id: date
run: echo "::set-output name=curmonth::$(date +'%Y-%m')"
- name: Cache Model Files
id: cache-model-files
uses: actions/cache/restore@v3
with:
path: ${{ env.CACHE_PATHS }}
key: ${{ steps.date.outputs.curmonth }}-b
# Generate initial file list for all directories
- name: Generate initial model file list
run: |
for dir in ${{ env.CACHE_PATHS }}; do
if [ -d "$dir" ]; then
find $dir
fi
done > initial_file_list.txt
- name: Test with pytest
timeout-minutes: 20
run: |
pytest --durations=50 -v --subset ${{ matrix.subset }}
# Generate final file list and check for new files
- name: Generate final model file list
run: |
for dir in ${{ env.CACHE_PATHS }}; do
if [ -d "$dir" ]; then
find $dir
fi
done > final_file_list.txt
if ! diff initial_file_list.txt final_file_list.txt > /dev/null; then
echo "New files detected."
echo "new_files=true" >> $GITHUB_ENV
else
echo "No new files detected."
fi
- uses: actions/cache/save@v3
id: cache
if: env.new_files == 'true'
with:
path: ${{ env.CACHE_PATHS }}
key: ${{ steps.date.outputs.curmonth }}-b