forked from woltapp/wolt-python-package-cookiecutter
-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (66 loc) · 2.01 KB
/
test.yml
File metadata and controls
74 lines (66 loc) · 2.01 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
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Sanity checks
on: [push]
jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) 1.7.11
shell: bash
- name: Check workflow files
run: ./actionlint -color
shell: bash
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: false
python-version: "3.12"
activate-environment: true
- run: uv pip install prek
- run: prek run --all-files
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: false
python-version: "3.12"
activate-environment: true
- run: uv pip install cookiecutter pytest pyyaml toml
- run: uv run pytest
lint-generated-project:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: python -m pip install cookiecutter uv prek
- run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) 1.7.11
- name: Generate project
run: |
cookiecutter --config-file tests/context.yaml --no-input .
cd example-project/
# actionlint needs a git repo in place
git init
git config user.email "gha@users.noreply.github.com"
git config user.name "gha"
git add .
git commit -m "initial commit"
- name: Lint workflows
run: |
cd example-project
../actionlint -color
- name: Lint project
run: |
cd example-project
uv sync
prek run --all-files
uv run mkdocs build