Skip to content

Adjust certbot scheduling strategy #20

Adjust certbot scheduling strategy

Adjust certbot scheduling strategy #20

Workflow file for this run

name: CI tests
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
pre-commit:
name: Run linters and other pre-commit hooks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run pre-commit
run: |
pre-commit run --all-files --show-diff-on-failure