Skip to content

chore(deps): bump pytest-testinfra from 10.1.0 to 10.1.1 #721

chore(deps): bump pytest-testinfra from 10.1.0 to 10.1.1

chore(deps): bump pytest-testinfra from 10.1.0 to 10.1.1 #721

Workflow file for this run

---
name: CI
on: push
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: install dependencies
run: |
python -m pip install --upgrade pip virtualenv
make install
- name: run pre-commit checks
run: make pre-commit
molecule:
strategy:
matrix:
debian_version: [10, 11]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install dependencies
run: |
sudo python3 -m pip install --upgrade pip
sudo python3 -m pip install -r requirements.txt
sudo wget -O /usr/local/bin/mkcert https://github.com/FiloSottile/mkcert/releases/download/v1.4.3/mkcert-v1.4.3-linux-amd64
sudo chmod +x /usr/local/bin/mkcert
make mkcert
- name: Run molecule test
run: sudo molecule --debug -vvvvv test
env:
DEBIAN_VERSION: ${{ matrix.debian_version }}