We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2e04a7 commit bcbe6a4Copy full SHA for bcbe6a4
.github/workflows/ci.yml
@@ -8,8 +8,25 @@ on:
8
branches: [main]
9
10
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
+
28
build_autoconf:
- name: Build and test
29
+ name: Build and test (Autoconf)
30
strategy:
31
fail-fast: false
32
matrix:
0 commit comments