Skip to content

Commit

Permalink
Add a first testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MakisH committed Oct 9, 2024
1 parent d6e2d50 commit cf8ba2f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Testing workflow

on: [push, pull_request]

jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8.10'
- name: "Install style checker"
run: pip install black
- name: "Run style check"
run: black --check .

0 comments on commit cf8ba2f

Please sign in to comment.