Skip to content

Bump jinja2 from 3.1.2 to 3.1.3 #12

Bump jinja2 from 3.1.2 to 3.1.3

Bump jinja2 from 3.1.2 to 3.1.3 #12

Workflow file for this run

name: 'Testing'
on: pull_request
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
- name: Install pylint
run: pip install pylint
- name: Run pre-commit
uses: pre-commit/action@v2.0.0
test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build the Docker image
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64
tags: test-build/docker-debugging:latest
push: false