fix requirement of modprobe ip_tables #1329
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: pre-commit-checks | |
on: | |
pull_request | |
jobs: | |
pre_commit: | |
name: Check code with precommit | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run precommit check | |
uses: pre-commit/[email protected] |