-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (34 loc) · 945 Bytes
/
main.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: Build and tests
on: [push]
# on:
# pull_request:
# branches:
# - main
jobs:
build:
name: Build project
runs-on: ubuntu-latest
# runs-on: python:latest
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: "3.8"
cache: "pip" # caching pip dependencies
- name: Update pip
run: pip install --upgrade pip
- name: Install dependencies and pydaes (pydaes)
run: pip install -e .
- name: Install test dependencies
run: pip install pytest
- name: Test with pytest
run: pytest ./test/
- name: Coverage report with pytest-cov
# run: pytest --cov=pydaes
run: pytest --cov=pydaes --cov-report=term --cov-report=lcov --cov-report=xml
- name: Upload coverage data
uses: actions/upload-artifact@v3
with:
name: covdata
path: coverage.xml