diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-07-21 16:56:44 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-21 16:56:44 -0600 |
commit | 66e46f578b209eee42b9420a12550a8de0ca3e10 (patch) | |
tree | d85fc31f6f3a48c64205b33473c8fd55eb916de2 /.github | |
parent | 661d30f4cc8b8bf4b702c3a8d71b6add86915e16 (diff) | |
parent | 3bd6db28fbd1392c2c883b48e7beb783114d0d06 (diff) | |
download | fpm-66e46f578b209eee42b9420a12550a8de0ca3e10.tar.gz fpm-66e46f578b209eee42b9420a12550a8de0ca3e10.zip |
Merge pull request #140 from certik/ex
Build hello_world
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/CI.yml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0de8b3e..4666022 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -82,9 +82,12 @@ jobs: cd bootstrap stack test - - name: Build and run Fortran fpm + - name: Build and run Fortran fpm (Linux / macOS) + if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos') run: | - cd fpm - fpm build - fpm run - fpm run --args build + ci/run_tests.sh + + - name: Build and run Fortran fpm (Windows) + if: contains(matrix.os, 'windows') + run: | + ci\run_tests.bat |