Skip to content

Commit c55fa14

Browse files
committed
Add script execute permission fix to CI
1 parent 792b359 commit c55fa14

4 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/R-CMD-check.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ jobs:
3737
steps:
3838
- uses: actions/checkout@v6
3939

40+
- name: Fix script permissions
41+
if: runner.os != 'Windows'
42+
run: chmod +x configure cleanup
43+
4044
- uses: r-lib/actions/setup-pandoc@v2
4145

4246
- uses: r-lib/actions/setup-r@v2

.github/workflows/test-coverage.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v6
2121

22+
- name: Fix script permissions
23+
if: runner.os != 'Windows'
24+
run: chmod +x configure cleanup
25+
2226
- uses: r-lib/actions/setup-r@v2
2327
with:
2428
use-public-rspm: true

cleanup

100755100644
File mode changed.

configure

100755100644
File mode changed.

0 commit comments

Comments
 (0)