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 2347694 commit 83e43cc
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,6 @@ jobs:
run: |
devcontainer build --workspace-folder .
devcontainer up --workspace-folder .
- name: Run tests inside DevContainer
run: devcontainer exec --workspace-folder . bundle exec rspec

dockerfile:
runs-on: ubuntu-latest
steps:
Expand All @@ -106,7 +102,7 @@ jobs:
release:
runs-on: ubuntu-latest
# if: github.ref == 'refs/heads/main'
needs: [rubocop]
needs: [rubocop, devcontainer]
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 83e43cc

Please sign in to comment.