-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (41 loc) · 1.18 KB
/
pip-build-lint-test-coverage.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
name: hatch - Build Lint Test and Coverage
on:
push:
branches: [ main, "v*"]
pull_request:
branches: [ main, "v*"]
jobs:
build-lint-test-coverage:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- name: Get git tags
run: git fetch --prune --unshallow --tags
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
- name: Install openorb dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y gfortran liblapack-dev
- name: Install Hatch
run: |
pip install pip --upgrade
pip install hatch
- name: Lint
run: hatch run dev:lint
- name: Test, with coverage report
run: hatch run dev:coverage
- name: Coverage report to coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.COVERALLS_TOKEN }}
path-to-lcov: coverage.xml