From 521dd85dbb931e98105965d5c82e7d356f76afb9 Mon Sep 17 00:00:00 2001 From: "Ronald I." <14822065+rilma@users.noreply.github.com> Date: Fri, 27 Oct 2023 21:52:27 +0000 Subject: [PATCH] make target installing gfortran --- .github/workflows/ci.yaml | 1 + Makefile | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0469a99..d6d8a6f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,6 +22,7 @@ jobs: python-version: ${{ matrix.python_version }} - name: Install dependencies run: | + make install-gfortran make install - name: Run code test in Python programs run: | diff --git a/Makefile b/Makefile index 64ed380..784c50e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,8 @@ +install-gfortran: + sudo apt update -y + sudp apt -y install gfortran + install: pip -q install coveralls pip install numpy