-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (34 loc) · 906 Bytes
/
plugin-test.yml
File metadata and controls
42 lines (34 loc) · 906 Bytes
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
name: Plugin Tests
on:
push:
paths:
- 'plugin/**'
pull_request:
paths:
- 'plugin/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@38f3f104447c67c051c4a08e39b64a148898af3a # v4
- name: Install dependencies
run: |
cd plugin
uv sync --extra dev
- name: Run tests
run: |
cd plugin
uv run pytest tests -v
- name: Type check with ty
run: |
cd plugin
uv run ty check kubectl_marimo