generated from EES-TUe/ees-scientific-software-engineering
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (34 loc) · 1.01 KB
/
build-and-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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python build and test
on:
push:
branches: [ "main" ]
pull_request:
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Build
run: |
pip wheel -w dist .
- name: Install
run: |
pip install ees-scientific-software-engineering[dev] --find-links=dist
- name: Test with pytest
run: |
pytest
- name: Check code format
run: |
isort --check .
black --check .
- name: Check code quality
run: |
pylint ees_scientific_software_engineering
mypy src/ees_scientific_software_engineering