Skip to content

Commit

Permalink
add even
Browse files Browse the repository at this point in the history
  • Loading branch information
Kislovskiy committed Apr 13, 2024
1 parent 53aa068 commit 7073bc1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/2024_PyConDE_random_generator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,10 @@ jobs:
if: ${{ ! needs.random-number-generator.outputs.is-even }}
steps:
- run: echo "The number is ${{ needs.random-number-generator.outputs.number }} is odd"

consumer-of-generator-even:
needs: random-number-generator
runs-on: ubuntu-latest
if: ${{ needs.random-number-generator.outputs.is-even }}
steps:
- run: echo "The number is ${{ needs.random-number-generator.outputs.number }} is even"

0 comments on commit 7073bc1

Please sign in to comment.