forked from huggingface/tokenizers
-
Notifications
You must be signed in to change notification settings - Fork 0
119 lines (100 loc) · 3.07 KB
/
python.yml
File metadata and controls
119 lines (100 loc) · 3.07 KB
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
114
115
116
117
118
119
name: Python
on:
push:
branches:
- master
paths-ignore:
- bindings/node/**
pull_request:
paths-ignore:
- bindings/node/**
jobs:
code_quality:
name: Check Code Quality
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v1
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: 3.6
architecture: "x64"
- name: Install dependencies
run: pip install black==19.10b0
- name: Check style
working-directory: ./bindings/python
run: make check-style
build_win_32:
name: Check it builds for Windows 32-bit
runs-on: windows-latest
strategy:
matrix:
python: [3.5, 3.6, 3.7, 3.8]
steps:
- name: Checkout repository
uses: actions/checkout@v1
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable-i686-pc-windows-msvc
override: true
- name: Override toolchain
shell: bash
working-directory: ./bindings/python
run: echo "stable-i686-pc-windows-msvc" > rust-toolchain
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
architecture: x86
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --manifest-path ./bindings/python/Cargo.toml
build_and_test:
name: Check everything builds & tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v1
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
# # Necessary for now for the cargo cache: https://github.com/actions/cache/issues/133#issuecomment-599102035
# - run: sudo chown -R $(whoami):$(id -ng) ~/.cargo/
# - name: Cache Cargo Registry
# uses: actions/cache@v1
# with:
# path: ~/.cargo/registry
# key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
# - name: Cache Cargo Build Target
# uses: actions/cache@v1
# with:
# path: ./bindings/python/target
# key: ${{ runner.os }}-cargo-python-build-${{ hashFiles('**/Cargo.lock') }}
- name: Lint with RustFmt
uses: actions-rs/cargo@v1
with:
toolchain: stable
command: fmt
args: --manifest-path ./bindings/python/Cargo.toml -- --check
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: 3.6
architecture: "x64"
- name: Run tests
working-directory: ./bindings/python
run: |
python -m venv .env
source .env/bin/activate
pip install pytest requests setuptools_rust numpy
python setup.py develop
make test