-
Notifications
You must be signed in to change notification settings - Fork 265
48 lines (44 loc) · 1.42 KB
/
continuous-integration.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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: builds
on:
push:
# Run when main is updated
branches: [ main ]
pull_request:
# Run on pull requests against main
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
os: [ubuntu-latest]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@main
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov ipython
- name: Test and generate coverage report
# Run coverage analysis on pytest tests
run: |
pip install .
py.test --cov-report=xml --cov=./
- name: Upload coverage to Deepsource
if: ${{ matrix.python-version == '3.11' }}
uses: deepsourcelabs/test-coverage-action@master
with:
key: python
coverage-file: coverage.xml
dsn: ${{ secrets.DEEPSOURCE_DSN }}
env:
DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }}