Skip to content

Commit

Permalink
Fix job dependencies in GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
oleander committed Nov 15, 2024
1 parent 176ff21 commit 8cf8136
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:

rspec:
runs-on: ${{ matrix.os }}
needs: [dockerfile, devcontainer, rubocop]
strategy:
matrix:
ruby: ["3.1", "3.2", "3.3"]
Expand Down Expand Up @@ -100,7 +99,7 @@ jobs:
release:
runs-on: ubuntu-latest
# if: github.ref == 'refs/heads/main'
needs: rspec
needs: [rspec, rubocop, devcontainer, dockerfile]
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 8cf8136

Please sign in to comment.