-
Notifications
You must be signed in to change notification settings - Fork 7
58 lines (48 loc) · 1.24 KB
/
ci.yml
File metadata and controls
58 lines (48 loc) · 1.24 KB
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
51
52
53
54
55
56
57
58
name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types:
- published
schedule:
# Run nightly to check that tests are working with latest dependencies
- cron: "0 0 * * *"
jobs:
check-rmsenv:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- name: Checkout commit locally
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install rmsenv with dependencies
if: ${{ always() }}
run: |
pip install -U pip
pip install -e ".[dev]"
- name: List all installed packages
run: pip freeze
- name: Ruff check
if: ${{ always() }}
run: ruff check
- name: Ruff format
if: ${{ always() }}
run: ruff format --check
- name: Check typing with mypy
if: ${{ always() }}
run: mypy src tests
- name: Run tests
if: ${{ always() }}
run: pytest -n auto tests --cov=fmu-settings-api --cov-report term-missing