Skip to content

Commit bb806f6

Browse files
authored
Update build_linux.yml
1 parent 68d7202 commit bb806f6

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/build_linux.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,20 @@ on: [push, pull_request]
55
jobs:
66
build-linux:
77
runs-on: ubuntu-latest
8-
#env:
9-
#strategy:
10-
# matrix:
8+
strategy:
9+
matrix:
10+
toolchain:
11+
- {compiler: gcc, version: 11}
12+
- {compiler: gcc, version: 12}
13+
- {compiler: gcc, version: 13}
1114

1215
steps:
1316

1417
- name: checkout-fortran-strings
1518
uses: actions/checkout@v3
1619
with:
20+
compiler: ${{ matrix.toolchain.compiler }}
21+
version: ${{ matrix.toolchain.version }}
1722
path: fortran-strings
1823

1924
- name: build and test

0 commit comments

Comments
 (0)