Skip to content

Commit

Permalink
fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
WolleTD committed Jan 27, 2024
1 parent 8d02928 commit 2250965
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,21 @@ jobs:
source-ref: ${{ matrix.src-ok }}
target-ref: ${{ matrix.target }}
- name: clear git repo
run: rm -rf .git
run: git rm -rf . && rm -rf .git
- name: test json is skipped
uses: ./.test/
with:
source-ref: ${{ matrix.src-ok }}
target-ref: ${{ matrix.target }}
clang-version: 12
- name: clear git repo
run: rm -rf .git
run: git rm -rf . && rm -rf .git
- name: test without source-ref (does nothing in this case, but should succeed)
uses: ./.test/
with:
target-ref: ${{ matrix.target }}
- name: clear git repo
run: rm -rf .git
run: git rm -rf . && rm -rf .git
- name: test with format error
uses: ./.test/
with:
Expand All @@ -56,7 +56,7 @@ jobs:
continue-on-error: true
id: fail1
- name: clear git repo
run: rm -rf .git
run: git rm -rf . && rm -rf .git
- name: test with git error
uses: ./.test/
with:
Expand Down

0 comments on commit 2250965

Please sign in to comment.