Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mcascone committed Aug 14, 2024
2 parents d7d4868 + 29c5bc5 commit c47f7ea
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/configtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: init
run: echo 'starting init'
run: echo 'starting ${{ github.job }}'

- name: checkout
uses: actions/checkout@v4
Expand All @@ -29,7 +29,7 @@ jobs:
continue-on-error: true

- name: done
run: echo '::notice::${{ github.job }} done' >> $GITHUB_STEP_SUMMARY
run: echo "::notice::${{ github.job }} done"

read:
name: Read
Expand All @@ -38,7 +38,7 @@ jobs:

steps:
- name: read
run: echo 'starting read'
run: echo 'starting ${{ github.job }}'

- name: read config
uses: ./example-config-updater
Expand All @@ -47,7 +47,7 @@ jobs:
continue-on-error: true

- name: done
run: echo '::notice::${{ github.job }} done' >> $GITHUB_STEP_SUMMARY
run: echo "::notice::${{ github.job }} done"

post:
name: Post
Expand All @@ -56,7 +56,7 @@ jobs:

steps:
- name: post
run: echo 'starting post'
run: echo 'starting ${{ github.job }}'

- name: done
run: echo '::notice::${{ github.job }} done' >> $GITHUB_STEP_SUMMARY
run: echo "::notice::${{ github.job }} done"

0 comments on commit c47f7ea

Please sign in to comment.