Skip to content

Commit

Permalink
add names for jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
eivankin committed Jul 4, 2024
1 parent de948e4 commit 1f3b890
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Test & Build Python Package
name: CI/CD Workflow
on: push
jobs:
ruff-format:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -10,12 +11,14 @@ jobs:
args: format --check

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

test-and-build:
name: Test & Build Python Package
runs-on: ubuntu-latest
needs: [ruff-check, ruff-format]

Expand Down

0 comments on commit 1f3b890

Please sign in to comment.