mirror of
https://github.com/beetbox/beets.git
synced 2025-12-21 16:13:38 +01:00
Add formatting check workflow
This commit is contained in:
parent
e8bf993f6a
commit
5177b669b2
1 changed files with 12 additions and 0 deletions
12
.github/workflows/formatting_check.yml
vendored
Normal file
12
.github/workflows/formatting_check.yml
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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
|
||||
- uses: paolorechia/pox@v1.0.1
|
||||
with:
|
||||
tox_env: "format_check"
|
||||
Loading…
Reference in a new issue