Skip to content

Commit

Permalink
Name workflow jobs explicitly
Browse files Browse the repository at this point in the history
Otherwise they cannot be enabled as status checks
for protected branches
  • Loading branch information
volkerstampa committed Oct 30, 2023
1 parent 4e9cc70 commit d1a06d7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ permissions:

jobs:
docs:
name: docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ defaults:

jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -38,6 +39,7 @@ jobs:
- run: pnpm check
- run: pnpm lint
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ concurrency:

jobs:
lint-and-test:
name: lint and test
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -47,6 +48,7 @@ jobs:
poetry run ./scripts/precommit-and-mypy-and-pytest.sh
run-notebooks:
name: run notebooks
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit d1a06d7

Please sign in to comment.