Skip to content

switch to port 80 to see if it makes a difference #19

switch to port 80 to see if it makes a difference

switch to port 80 to see if it makes a difference #19

Workflow file for this run

name: Pre-commit Hooks
on:
pull_request:
branches: [develop]
jobs:
pre-commit-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Precommit stuff
run: |
SKIP=no-commit-to-branch pre-commit run --all-files