Skip to content

fix(deps): bump python-semantic-release/python-semantic-release from 9.12.0 to 9.12.1 #483

fix(deps): bump python-semantic-release/python-semantic-release from 9.12.0 to 9.12.1

fix(deps): bump python-semantic-release/python-semantic-release from 9.12.0 to 9.12.1 #483

Workflow file for this run

---
name: Test
on:
pull_request:
paths-ignore:
- '**.md'
- 'LICENSE'
- '.github/dependabot.yml'
env:
DOCKER_IMAGE_NAME: gofrolist/molecule
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Build Docker image
uses: docker/[email protected]
with:
context: .
file: Dockerfile
load: true
tags: ${{ env.DOCKER_IMAGE_NAME }}:test
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Test Molecule default pipeline
run: |
docker run \
-v /var/run/docker.sock:/var/run/docker.sock \
-e PY_COLORS=1 \
${{ env.DOCKER_IMAGE_NAME }}:test \
sh -c "\
molecule --version \
&& molecule init scenario --driver-name docker validate \
&& molecule test --scenario-name validate --driver-name docker \
"