forked from slackapi/bolt-python
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (51 loc) · 1.67 KB
/
ci-build.yml
File metadata and controls
54 lines (51 loc) · 1.67 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
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python setup.py install
pip install -U pip
pip install "pytest>=5,<6" "pytest-cov>=2,<3" "flask_sockets>0.2,<1"
- name: Run tests without aiohttp
run: |
pytest tests/slack_bolt/
pytest tests/scenario_tests/
- name: Run tests for adapters
run: |
pip install -e ".[adapter]"
pytest tests/adapter_tests/
- name: Run pytype verification (3.8 only)
run: |
python_version=`python -V`
if [ ${python_version:7:3} == "3.8" ]; then
pip install -e ".[async]"
pip install -e ".[adapter]"
pip install "pytype" && pytype slack_bolt/
fi
- name: Run all tests for codecov (3.6 only)
run: |
python_version=`python -V`
# TODO: As Python 3.6 works the most stably on GitHub Actions,
# we use the version for code coverage and async tests
if [ ${python_version:7:3} == "3.6" ]; then
pip install -e ".[async]"
pip install -e ".[testing]"
pytest --cov=slack_bolt/ && bash <(curl -s https://codecov.io/bash)
fi