Skip to content

Commit

Permalink
Add Ruff and Black workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
doubleailes committed Feb 24, 2024
1 parent 577439d commit 9b49308
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,21 @@ on:
- published

jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Ruff
uses: chartboost/ruff-action@v1
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Black
uses: psf/black@stable
build_and_release:
runs-on: ubuntu-latest
needs: [ruff, black]
permissions:
contents: read
packages: write
Expand Down

0 comments on commit 9b49308

Please sign in to comment.