10000 Changes for version 1.22.0 (#108) · ada-url/ada-python@3a3c708 · GitHub
[go: up one dir, main page]

Skip to content
< 8000 div id="repository-details-container" class="flex-shrink-0" data-turbo-replace style="max-width: 70%;">

Changes for version 1.22.0 (#108) #269

Changes for version 1.22.0 (#108)

Changes for version 1.22.0 (#108) #269

Workflow file for this run

name: Lint
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths-ignore:
- '**.rst'
- 'docs/**'
push:
branches:
- main
paths-ignore:
- '**.rst'
- 'docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install dependencies
run: |
make requirements
- name: Static analysis
run: |
make check
0