-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (49 loc) · 1.47 KB
/
Copy pathci.yml
File metadata and controls
61 lines (49 loc) · 1.47 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
59
60
61
name: CI
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
quality:
name: Python 3.11 / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: Check out repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.11"
cache: pip
cache-dependency-path: pyproject.toml
- name: Install package and development tools
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev,figures]"
- name: Check lint
run: python -m ruff check .
- name: Check formatting
run: python -m ruff format --check .
- name: Validate checked-in publication bytes
run: >-
python scripts/validate_publication_release.py
--inventory-only
research/results/experiment-001
- name: Run tests
run: python -m pytest --basetemp .pytest-ci
- name: Build distributions
run: python -m build
- name: Smoke-test installed wheel
run: >-
python scripts/smoke_installed_distribution.py
dist/cliffquant-0.1.2-py3-none-any.whl