Skip to content

Commit 18f8091

Browse files
committed
fix yml typos
1 parent 19fe056 commit 18f8091

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/CI.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -59,36 +59,36 @@ jobs:
5959
- name: Compile_with_cmake
6060
if: matrix.gcc_v == 7
6161
run: |
62-
- GFORTRAN=gfortran-${{ matrix.gcc_v }}
63-
- GCOV=gcov-${{ matrix.gcc_v }}
62+
GFORTRAN=gfortran-${{ matrix.gcc_v }}
63+
GCOV=gcov-${{ matrix.gcc_v }}
6464
# CMake build with unit tests, no documentation, with coverage analysis
6565
# No unicode so that coverage combined with the build script will cover unicode
6666
# and non-unicode code paths
67-
- mkdir cmake-build
68-
- cd cmake-build
69-
- cmake ..
70-
- make -j 4 check
67+
mkdir cmake-build
68+
cd cmake-build
69+
cmake ..
70+
make -j 4 check
7171
7272
- name: Compile_with_build
7373
if: matrix.gcc_v == 8
7474
run: |
75-
- GFORTRAN=gfortran-${{ matrix.gcc_v }}
76-
- GCOV=gcov-${{ matrix.gcc_v }}
75+
GFORTRAN=gfortran-${{ matrix.gcc_v }}
76+
GCOV=gcov-${{ matrix.gcc_v }}
7777
# build with build.sh, run unit tests
78-
- ./build.sh --skip-documentation
79-
- ./build.sh --skip-documentation --enable-unicode
80-
- CODE_COVERAGE="no"
81-
- DEPLOY_DOCUMENTATION="no"
78+
./build.sh --skip-documentation
79+
./build.sh --skip-documentation --enable-unicode
80+
CODE_COVERAGE="no"
81+
DEPLOY_DOCUMENTATION="no"
8282
83-
- name: Compile_with_build
83+
- name: Compile_with_build_mkdocs
8484
if: matrix.gcc_v == 9
8585
run: |
8686
# build with build.sh, make documentation, run unit tests
8787
# and perform coverage analysis
88-
- ./build.sh --coverage --skip-documentation
89-
- ./build.sh --coverage --enable-unicode"
90-
- CODE_COVERAGE="yes"
91-
- DEPLOY_DOCUMENTATION="yes"
88+
./build.sh --coverage --skip-documentation
89+
./build.sh --coverage --enable-unicode"
90+
CODE_COVERAGE="yes"
91+
DEPLOY_DOCUMENTATION="yes"
9292
9393
9494
# - name: Run tests

0 commit comments

Comments
 (0)