-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 1.01 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest] #, macos-latest, windows-latest]
toolchain:
- {compiler: gcc, version: 12}
# - {compiler: intel-classic, version: '2021.9'}
# include:
# - os: ubuntu-latest
# toolchain: {compiler: intel, version: '2023.1'}
# exclude:
# - os: windows-latest
# toolchain: {compiler: intel-classic, version: '2021.9'}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup for Fortran
uses: awvwgk/setup-fortran@v1
with:
compiler: ${{ matrix.toolchain.compiler }}
version: ${{ matrix.toolchain.version }}
- uses: fortran-lang/setup-fpm@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Test
run: |
which ${{ env.FC }}
${{ env.FC }} --version
fpm test --compiler ${{ env.FC }}