Skip to content

Add compatibility with Cairo 2.0 #67

Add compatibility with Cairo 2.0

Add compatibility with Cairo 2.0 #67

Workflow file for this run

name: Lint
on:
# Trigger the workflow on pull requests
pull_request:
branches:
- master
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install Python dependencies
run: pip install black
- name: Run linters
uses: wearerequired/lint-action@v2
with:
black: true
auto_fix: true
black_auto_fix: true