Skip to content

renovate[bot] tests new python docker image #15

renovate[bot] tests new python docker image

renovate[bot] tests new python docker image #15

name: Test Python Image
run-name: ${{ github.actor }} tests new python docker image
on:
pull_request:
branches:
- main
paths-ignore:
- README.md
- .gitignore
- .editorconfig
#- .github/**
- .vscode/**
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build local Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ./debian.Dockerfile
load: true
tags: test
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Test Docker image
run: |
docker run --rm test python --version
docker run --rm test pipenv --version