Skip to content

Commit bcbe6a4

Browse files
committed
ci: Set up CI for devcontainer
1 parent a2e04a7 commit bcbe6a4

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,25 @@ on:
88
branches: [main]
99

1010
jobs:
11+
build_devcontainer:
12+
name: Build (Devcontainer)
13+
run-on: ubuntu-latest
14+
env:
15+
TAG: cpython-devcontainer:1.0.0-${{ github.run_id }}
16+
steps:
17+
- name: Checkout Push to Registry action
18+
uses: actions/checkout@v4
19+
- name: Set up Docker Buildx
20+
uses: docker/setup-buildx-action@v3
21+
- name: Build Dockerfile
22+
uses: docker/build-push-action@v5
23+
with:
24+
context: ./devcontainer
25+
load: true
26+
tags: ${{ env.TAG }}
27+
1128
build_autoconf:
12-
name: Build and test
29+
name: Build and test (Autoconf)
1330
strategy:
1431
fail-fast: false
1532
matrix:

0 commit comments

Comments
 (0)