-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (56 loc) · 1.87 KB
/
examples.yaml
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
62
63
64
65
66
67
68
---
name: Examples
on:
push:
branches:
- main
- renovate/**
pull_request:
workflow_dispatch:
concurrency:
cancel-in-progress: true
group: >-
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
jobs:
codeblocks:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
with:
python-version: "3.12"
cache: pip
cache-dependency-path: pyproject.toml
- name: Cache pooch
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
with:
path: ~/.cache/sleplet
key: readme-${{ hashFiles('pyproject.toml') }}
- name: Install dependencies
run: python -m pip install -e '.[readme]'
- name: Run examples in the README
run: python -m pytest --codeblocks .github README.md documentation
examples:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up python
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
with:
python-version: "3.12"
cache: pip
cache-dependency-path: pyproject.toml
- name: Cache pooch
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
with:
path: ~/.cache/sleplet
key: examples-${{ hashFiles('pyproject.toml') }}
- name: Install dependencies
run: python -m pip install -e .[docs]
- name: Run examples in the examples folder
run: >-
find examples -name "*.py" -exec sh -c 'for f; do printf "\n$f\n";
python "$f" || exit 1; done' sh {} +