-
Notifications
You must be signed in to change notification settings - Fork 10
43 lines (40 loc) · 998 Bytes
/
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
name: Test
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run pytest
runs-on: ubuntu-20.04
timeout-minutes: 15
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- name: Set Up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Check out code
uses: actions/checkout@v4
- name: Install Codemodder Package
run: pip install .
- name: Install Dependencies
run: pip install -r requirements/test.txt
- name: Run unit tests
run: make test
- name: Run integration tests
run: make integration-test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}