-
Notifications
You must be signed in to change notification settings - Fork 5
50 lines (47 loc) · 1.37 KB
/
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
44
45
46
47
48
49
50
# test autosar-data-py with pytest
name: Test
on:
push:
branches:
- main
tags:
- '*'
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install maturin
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Build and install wheel
run: |
source <(cargo llvm-cov show-env --export-prefix)
maturin build --out dist --find-interpreter
pip install autosar-data --find-links dist
- name: Test with pytest
run: |
source <(cargo llvm-cov show-env --export-prefix)
pytest
- name: Collect test coverage data
run: |
source <(cargo llvm-cov show-env --export-prefix)
cargo llvm-cov report --lcov --output-path lcov.info
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: lcov.info