Skip to content

add openssl 3.4 harness #987

add openssl 3.4 harness

add openssl 3.4 harness #987

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ">=3.11"
cache: "pip"
cache-dependency-path: pyproject.toml
- name: deps
run: make dev INSTALL_EXTRA=lint
- name: lint
run: make lint
all-lints-pass:
if: always()
needs:
- lint
runs-on: ubuntu-latest
steps:
- name: check lint jobs
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
with:
jobs: ${{ toJSON(needs) }}