Skip to content

Commit

Permalink
Merge pull request #71 from Andrew-Chen-Wang/revert-use-real-tests-on…
Browse files Browse the repository at this point in the history
…-prs

Revert extreme use of "real" tests in favor of dry-run & real tests
  • Loading branch information
jcbhmr authored Jul 16, 2023
2 parents c3271de + 4889f68 commit cd61829
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ on:
- README.md
- .github/**
- "!.github/workflows/test-action.yml"
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
test-action-clone:
concurrency: ${{ github.workflow }}
permissions:
contents: write
test-action-clone-dry-run:
strategy:
fail-fast: false
matrix:
Expand All @@ -30,10 +30,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./
test-action-init:
concurrency: ${{ github.workflow }}
permissions:
contents: write
with:
strategy: clone
dry-run: true
test-action-init-dry-run:
strategy:
fail-fast: false
matrix:
Expand All @@ -44,3 +44,12 @@ jobs:
- uses: ./
with:
strategy: init
dry-run: true
test-action-real:
concurrency: ${{ github.workflow }}-real
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./

0 comments on commit cd61829

Please sign in to comment.