summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMatus Valo <matusvalo@users.noreply.github.com>2021-03-07 13:53:25 +0100
committerGitHub <noreply@github.com>2021-03-07 18:53:25 +0600
commit39ccacf0dc986ee5842644f62da91a71fc2a768f (patch)
tree19488e982aa6a78c5661cc272cbd017454e5935b /.github
parent2a704e35856bda908f5f122d1aaabebc6b469b0c (diff)
downloadkombu-39ccacf0dc986ee5842644f62da91a71fc2a768f.tar.gz
Add Github Actions CI (#1309)
* Implement CI is github actions * Skip failing pypy3 unittests * Added integration tests
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yaml71
1 files changed, 71 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
new file mode 100644
index 00000000..e9fb7bc6
--- /dev/null
+++ b/.github/workflows/ci.yaml
@@ -0,0 +1,71 @@
+name: CI
+on: [pull_request, push]
+jobs:
+ #################### Linters and checkers ####################
+ lint:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ python-version: [3.8]
+ steps:
+ - name: Install system packages
+ run: sudo apt-get install libcurl4-openssl-dev libssl-dev
+ - name: Check out code from GitHub
+ uses: actions/checkout@v2.3.4
+ - name: Set up Python ${{ matrix.python-version }}
+ id: python
+ uses: actions/setup-python@v2.2.1
+ with:
+ python-version: ${{ matrix.python-version }}
+ - name: Install dependencies
+ run: pip install --upgrade pip setuptools wheel tox tox-docker
+ - name: Run flake8
+ run: tox -v -e py-flake8 -- -v
+ - name: Run pydocstyle
+ run: tox -v -e py-pydocstyle -- -v
+ - name: Run apicheck
+ run: tox -v -e py-apicheck -- -v
+ #################### Unittests ####################
+ unittest:
+ needs: lint
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ python-version: [3.6,3.7,3.8]
+ steps:
+ - name: Install system packages
+ run: sudo apt-get install libcurl4-openssl-dev libssl-dev
+ - name: Check out code from GitHub
+ uses: actions/checkout@v2.3.4
+ - name: Set up Python ${{ matrix.python-version }}
+ id: python
+ uses: actions/setup-python@v2.2.1
+ with:
+ python-version: ${{ matrix.python-version }}
+ - name: Install dependencies
+ run: pip install --upgrade pip setuptools wheel tox tox-docker
+ - name: Run unittest
+ run: tox -v -e ${{ matrix.python-version }}-linux-unit -- -v
+ #################### Integration tests ####################
+ integration:
+ needs: [lint, unittest]
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ python-version: [3.6,3.7,3.8,pypy3]
+ steps:
+ - name: Install system packages
+ run: sudo apt-get install libcurl4-openssl-dev libssl-dev
+ - name: Check out code from GitHub
+ uses: actions/checkout@v2.3.4
+ - name: Set up Python ${{ matrix.python-version }}
+ id: python
+ uses: actions/setup-python@v2.2.1
+ with:
+ python-version: ${{ matrix.python-version }}
+ - name: Install dependencies
+ run: pip install --upgrade pip setuptools wheel tox tox-docker
+ - name: Run AMQP integration tests
+ run: tox -v -e ${{ matrix.python-version }}-linux-integration-py-amqp -- -v
+ - name: Run redis integration tests
+ run: tox -v -e ${{ matrix.python-version }}-linux-integration-py-redis -- -v