-
-
Notifications
You must be signed in to change notification settings - Fork 33
71 lines (67 loc) · 1.49 KB
/
test.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
name: Test
on:
push:
branches: [main]
paths-ignore:
- "docs/**"
- "images/**"
- "**.md"
- "**.yml"
- "LICENSE-**"
- ".gitmessage"
- ".pre-commit-config.yaml"
pull_request:
branches: [main]
paths-ignore:
- "docs/**"
- "images/**"
- "**.md"
- "**.yml"
- "LICENSE-**"
- ".pre-commit-config.yaml"
env:
CARGO_TERM_COLOR: always
jobs:
package-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install
run: |
rustup update stable
cargo install --path .
- name: boto3
run: |
pip3 install boto3
pylyzer -c "import boto3"
echo "OK: boto3"
- name: urllib3
run: |
pip3 install urllib3
pylyzer -c "import urllib3"
echo "OK: urllib3"
- name: setuptools
run: |
pip3 install setuptools
pylyzer -c "import setuptools"
echo "OK: setuptools"
- name: requests
run: |
pip3 install requests
pylyzer -c "import requests"
echo "OK: requests"
- name: certifi
run: |
pip3 install certifi
pylyzer -c "import certifi"
echo "OK: certifi"
- name: charset-normalizer
run: |
pip3 install charset-normalizer
pylyzer -c "import charset_normalizer"
echo "OK: charset-normalizer"
- name: idna
run: |
pip3 install idna
pylyzer -c "import idna"
echo "OK: idna"