Skip to content
name: "Test Dev Container"
on:
push:
paths:
- 'devcontainer/Dockerfile'
pull_request:
paths:
- 'devcontainer/Dockerfile'
workflow_dispatch:
jobs:
test:
name: Build devcontainer image
# https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2404-Readme.md
runs-on: ubuntu-24.04
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Build 🧪
run: |
podman build . \
--file "devcontainer/Dockerfile" \
--network "slirp4netns" \
--platform "linux/amd64" \
--tag "cloud-tools-container:local"