Skip to content

tag names support and language fix #30

tag names support and language fix

tag names support and language fix #30

Workflow file for this run

name: Code style
on: [push, pull_request]
jobs:
code-style:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Check formatting
uses: chartboost/ruff-action@v1
with:
args: 'format --check'
- name: Check coding style
uses: chartboost/ruff-action@v1
with:
args: 'check --select F,E,W,I,PLW'