-
Notifications
You must be signed in to change notification settings - Fork 4
47 lines (41 loc) · 1.3 KB
/
python-package.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
# 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: Python package
on:
push:
branches: [ hs-2.13.1-test ]
pull_request_target:
branches: [ master ]
jobs:
build:
strategy:
matrix:
python-version: [3.9]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make install
pip install .
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
make format
- name: Test with pytest
env:
HYDRO_USERNAME: ${{ secrets.HYDRO_USERNAME }}
HYDRO_PASSWORD: ${{ secrets.HYDRO_PASSWORD }}
run: |
make test-cov
- name: Code Coverage Report
uses: romeovs/lcov-reporter-action@v0.2.11
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
lcov-file: ./coverage/lcov.info