Skip to content

ci: try dind via ports #42

ci: try dind via ports

ci: try dind via ports #42

Workflow file for this run

name: 'Molecule Test'
on:
pull_request: { }
push: {}
# branches:
# - master
jobs:
test:
name: 'Test'
runs-on: ubuntu-latest
services:
docker:
image: docker:dind
options: --privileged --shm-size=2g
ports:
- 2375:2375
steps:
- name: 'Checkout'
uses: actions/checkout@v4
- name: Cache .venv directory
uses: actions/cache@v4
with:
path: .venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements.txt') }}
- name: Converge
run: |
make init-venv
make molecule-converge
make molecule-converge-integration