diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-01-27 18:54:22 -0700 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-01-27 18:54:22 -0700 |
commit | b8f2216c94983aaa93b1917825437bdbc4341adf (patch) | |
tree | ec30ce7a991bb589fa12c660e9908674ea01c7eb | |
parent | d8dcf8ba8f59bf9ddeaab942028f236cfe62c98b (diff) | |
download | fpm-b8f2216c94983aaa93b1917825437bdbc4341adf.tar.gz fpm-b8f2216c94983aaa93b1917825437bdbc4341adf.zip |
Remove the workaround for #16
-rw-r--r-- | .github/workflows/CI.yml | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2f351a1..fce83bb 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -58,13 +58,6 @@ jobs: run: | cargo test --verbose --no-run - - name: Run tests (Linux, Windows) - if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'windows') + - name: Run tests run: | cargo test - - # Workaround for https://github.com/fortran-lang/fpm/issues/16 - - name: Run tests (macOS) - if: contains(matrix.os, 'macos') - run: | - cargo test || cargo test || cargo test |