Skip to content

Commit

Permalink
Fix job names
Browse files Browse the repository at this point in the history
  • Loading branch information
BurnySc2 committed Jul 12, 2023
1 parent b9f4580 commit 7ff3709
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/test_transcriber_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:

jobs:
test_backend:
name: test_backend
name: test_backend_py${{ matrix.python-version }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -66,18 +66,21 @@ jobs:
steps:
- uses: actions/checkout@v3

- id: wait-for-jobs
uses: yogeshlonkar/wait-for-jobs@v0
with:
gh-token: ${{ secrets.GITHUB_TOKEN }}
jobs: |
test_backend_py3.8
test_backend_py3.9
test_backend_py3.10
- name: Build docker image
working-directory: ${{ env.SUBDIRECTORY }}
run: |
docker build -t burnysc2/${{ env.IMAGENAME }}:latest .
docker build -t burnysc2/${{ env.IMAGENAME }}:${{ env.VERSION_NUMBER}} .
- id: wait-for-jobs
uses: yogeshlonkar/wait-for-jobs@v0
with:
gh-token: ${{ secrets.GITHUB_TOKEN }}
jobs: test_backend

- name: Login to DockerHub
uses: docker/login-action@v2
with:
Expand Down

0 comments on commit 7ff3709

Please sign in to comment.