Skip to content

Commit

Permalink
make single CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eivankin committed Jul 4, 2024
1 parent a685464 commit de948e4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
name: Test & Build Python Package
on: push
jobs:
ruff-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
with:
args: format --check

ruff-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1

test-and-build:
runs-on: ubuntu-latest
needs: [ruff-check, ruff-format]

steps:
- name: Checkout
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/ruff-lint.yml

This file was deleted.

0 comments on commit de948e4

Please sign in to comment.