Skip to content

Commit

Permalink
chore(ci): remove lint step from job dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nettoclaudio committed Jun 1, 2023
1 parent d83a52e commit 39fdc98
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
name: "Publish rpaas-api image on dockerhub"
needs:
- test
- lint
- integration
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
name: "Publish rpaas-operator image on dockerhub"
needs:
- test
- lint
- integration
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
name: "Publish rpaas-purger image on dockerhub"
needs:
- test
- lint
- integration
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
steps:
Expand Down Expand Up @@ -158,7 +158,9 @@ jobs:
release:
name: "Release artifacts on github"
if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/')
needs: [test, lint]
needs:
- test
- integration
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 39fdc98

Please sign in to comment.