-
Notifications
You must be signed in to change notification settings - Fork 3
114 lines (112 loc) · 3.91 KB
/
python_poetry.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
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: CI
on: pull_request
jobs:
tests:
strategy:
fail-fast: false
matrix:
python-version: [ 3.9, 3.8]
poetry-version: [ 1.4.2 ]
os: [ ubuntu-20.04, macos-latest, windows-2022 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
name: Load cached venv
id: cached-poetry-dependencies
with:
path: .venv
key: ${{github.event.pull_request.head.ref}}-venv-${{ runner.os }}-${{matrix.python-version}}-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
main-venv-${{ runner.os }}-${{matrix.python-version}}-${{ hashFiles('**/poetry.lock') }}
main-venv-${{ runner.os }}-${{matrix.python-version}}-
- uses: actions/cache@v3
name: Load cached HF
id: cached-huggingface-data
with:
path: .hf
key: ${{github.event.pull_request.head.ref}}-hf-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
main-hf-${{ hashFiles('**/poetry.lock') }}
main-hf-
- name: Install poetry
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install deps
run: poetry install -vv --no-interaction --no-root --extras "developer"
- name: Run tests
run: poetry run poe test
env:
HF_HOME: .hf
TRANSFORMERS_OFFLINE: false
lint:
strategy:
fail-fast: false
matrix:
python-version: [ 3.9]
poetry-version: [ 1.4.2 ]
os: [ ubuntu-20.04 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- uses: actions/cache@v3
name: Load cached venv
id: cached-poetry-dependencies
with:
path: .venv
key: ${{github.event.pull_request.head.ref}}-venv-${{ runner.os }}-${{matrix.python-version}}-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
main-venv-${{ runner.os }}-${{matrix.python-version}}-${{ hashFiles('**/poetry.lock') }}
main-venv-${{ runner.os }}-${{matrix.python-version}}-
- name: Install deps
run: poetry install -vv --no-interaction --no-root --extras "developer"
- name: Check
run: poetry run poe check
publish:
needs:
- tests
- lint
environment: Test deployment
strategy:
fail-fast: false
matrix:
python-version: [ 3.9 ]
poetry-version: [ 1.4.2 ]
os: [ ubuntu-20.04 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- uses: actions/cache@v3
name: Load cached venv
id: cached-poetry-dependencies
with:
path: .venv
key: ${{github.event.pull_request.head.ref}}-venv-${{ runner.os }}-${{matrix.python-version}}-${{ hashFiles('**/poetry.lock') }}
- name: Install deps
run: poetry install -vv --no-interaction --no-root --extras "developer"
- name: Build and publish
run: |
poetry version "$(git describe --tags --abbrev=0)a${GITHUB_RUN_ID}${GITHUB_RUN_NUMBER}"
poetry build
poetry config repositories.testpypi https://test.pypi.org/legacy/
poetry publish -r testpypi --username __token__ --password ${{ secrets.TEST_PYPI_API_TOKEN }}