renovate[bot] tests new python docker image #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |