Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
eXamadeus committed Dec 27, 2023
1 parent b6b3e80 commit a23dc97
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 17 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Pull Request CI
on: [ push ]

jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Black
uses: microsoft/action-python@0.7.2
with:
workdir: .
black: true
python_version: "3.12"
- name: Flake8
uses: microsoft/action-python@0.7.2
with:
workdir: .
flake8: true
python_version: "3.12"
17 changes: 0 additions & 17 deletions .github/workflows/ci.yml → .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,6 @@ name: Pull Request CI
on: [ push ]

jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Black
uses: microsoft/action-python@0.7.2
with:
workdir: .
black: true
python_version: "3.12"
- name: Flake8
uses: microsoft/action-python@0.7.2
with:
workdir: .
flake8: true
python_version: "3.12"

pytest:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit a23dc97

Please sign in to comment.