-
-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (45 loc) · 1.51 KB
/
pythonapp.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
name: Python application
on: [push]
jobs:
build:
name: Test on Python ${{ matrix.python-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
os: [ubuntu-latest, windows-latest, macOS-latest]
fail-fast: false
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements-test.txt
- name: Test with pytest
env:
PYTHONPATH: .
run: |
pip install pytest
pytest -v --flake8 --durations=10 --cov aiomsg tests
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Upload coverage
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# This will only work if we also send a "done" event after the
# whole job is finished.
# See: https://docs.coveralls.io/parallel-build-webhook
#COVERALLS_PARALLEL: "true"
CI_BRANCH: ${{ steps.extract_branch.outputs.branch }}
if: matrix.os == 'ubuntu-latest'
run: |
coveralls