Skip to content

Python add poetry

Python add poetry #4

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
test:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: setup ruff
run: pip install ruff
- name: check ruff linter
run: ruff check --output-format=github .
- name: check ruff formatter
run: ruff format --check .
- uses: actions/cache@v3
with:
path: .php-cs-fixer.cache
key: ${{ runner.OS }}-${{ github.repository }}-phpcsfixer-${{ github.sha }}
restore-keys: |
${{ runner.OS }}-${{ github.repository }}-phpcsfixer-
- name: PHP-CS-Fixer
uses: docker://oskarstark/php-cs-fixer-ga