chore(deps): bump pre-commit from 3.8.0 to 4.0.1 #772
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: 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: [11, 12] | |
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 }} |