Skip to content

build(deps): bump cryptography in /.github/actions/merge #1

build(deps): bump cryptography in /.github/actions/merge

build(deps): bump cryptography in /.github/actions/merge #1

Workflow file for this run

name: CI
on:
push:
branches: master
pull_request:
branches: master
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip'
- name: Install dependencies
run: pip install --user ruff
- name: Check format
run: find .github -name *.py -exec ruff format --check {} \;
- name: Lint
run: find .github -name *.py -exec ruff check --output-format=github {} \;