Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
nizarmah committed Mar 17, 2024
1 parent c576284 commit af8aaef
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
overwrite: true

- name: Assert successful overwrite
run: git diff --exit-code tests/action/overwrite/overwritten/*
run: |
git diff --exit-code tests/action/overwrite/overwritten/*
- name: Test failed overwrite
uses: ./
Expand All @@ -46,4 +47,5 @@ jobs:
overwrite: false

- name: Assert failed overwrite
run: ! git diff --exit-code tests/action/overwrite/not-overwritten/*
run: |
! git diff --exit-code tests/action/overwrite/not-overwritten/*

0 comments on commit af8aaef

Please sign in to comment.