mirror of
https://github.com/beetbox/beets.git
synced 2025-12-31 13:02:47 +01:00
14 lines
334 B
YAML
14 lines
334 B
YAML
name: formatting_check
|
|
run-name: Check code formatting
|
|
on: [push, pull_request]
|
|
jobs:
|
|
formatting_check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install dependencies
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run formatting check
|
|
uses: paolorechia/pox@v1.0.1
|
|
with:
|
|
tox_env: "format_check"
|