diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/CI.yml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c9618f5..2f351a1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -31,13 +31,9 @@ jobs: - name: Checkout code uses: actions/checkout@v1 - - name: Set up Python 3.x - uses: actions/setup-python@v1 # Use pip to install latest CMake, & FORD/Jin2For, etc. - with: - python-version: 3.x - - - name: Set up common - run: pip install --upgrade cmake + - name: Install CMake Linux + if: contains(matrix.os, 'ubuntu') + run: ci/install_cmake.sh - name: Install GFortran Linux if: contains(matrix.os, 'ubuntu') |