Skip to content

Commit 446295d

Browse files
committed
ci: Check devcontainer works
1 parent 283179d commit 446295d

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Check - Devcontainer
2+
on:
3+
pull_request:
4+
paths:
5+
- "**.py"
6+
- ".devcontainer/**"
7+
- ".github/workflows/check-devcontainer.yaml"
8+
- "adventofcode/**/input-*.txt"
9+
- "pyproject.toml"
10+
- "uv.lock"
11+
workflow_call:
12+
workflow_dispatch:
13+
permissions:
14+
contents: read
15+
16+
jobs:
17+
wf:
18+
uses: nikobockerman/github-workflows/.github/workflows/check-devcontainer.yaml@cc3e3fdec0b2379e550c1ea4059cb79f455ff668
19+
with:
20+
runCmd: uv run poe runall

.github/workflows/ci.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,6 @@ jobs:
2727
uses: ./.github/workflows/test-pytest.yaml
2828
run-all:
2929
uses: ./.github/workflows/run-all.yaml
30+
31+
check-devcontainer:
32+
uses: ./.github/workflows/check-devcontainer.yaml

0 commit comments

Comments
 (0)