Skip to content

Commit 18656fb

Browse files
committed
fix flags
1 parent 6ce4c41 commit 18656fb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Build and test pkg
33
on: [push, pull_request]
44

55
env:
6-
FLAGS: '-Wno-compare-reals -Wno-unused-dummy-argument -ftrampoline-impl=heap'
7-
FLAGSCOV: "--coverage -fprofile-abs-path"
6+
FLAGS: -Wno-compare-reals -Wno-unused-dummy-argument -ftrampoline-impl=heap
7+
FLAGSCOV: --coverage -fprofile-abs-path
88

99
jobs:
1010
linux-gcc-build:
@@ -40,8 +40,8 @@ jobs:
4040
run: |
4141
gfortran --version
4242
fpm --version
43-
fpm test --profile debug --flag $FLAGS --verbose
44-
fpm test --profile release --flag $FLAGS --verbose
43+
fpm test --profile debug --flag "$FLAGS" --verbose
44+
fpm test --profile release --flag "$FLAGS" --verbose
4545
4646
- name: Generate coverage report
4747
run: |
@@ -89,5 +89,5 @@ jobs:
8989
run: |
9090
gfortran --version
9191
fpm --version
92-
fpm test --profile debug --flag $FLAGS --verbose
93-
fpm test --profile release --flag $FLAGS --verbose
92+
fpm test --profile debug --flag "$FLAGS" --verbose
93+
fpm test --profile release --flag "$FLAGS" --verbose

0 commit comments

Comments
 (0)