From 3d91d46b2d88d658279144dba3640ca91efa70e2 Mon Sep 17 00:00:00 2001 From: Manas Rachh Date: Tue, 20 Feb 2024 14:05:39 -0500 Subject: [PATCH] fixing windows dependencies in github actions --- .github/workflows/python.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 7c5f36a..9f1cfe3 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -3,13 +3,13 @@ name: Python Build on: push: branches: - - main + - master tags: - v* - py_v* pull_request: branches: - - main + - master jobs: Linux: @@ -148,7 +148,7 @@ jobs: - uses: actions/checkout@v3 - name: Install GCC and make - run: C:\msys64\usr\bin\bash.exe -lc "pacman -Sy --noconfirm make mingw-w64-x86_64-toolchain" + run: C:\msys64\usr\bin\bash.exe -lc "pacman -Sy --noconfirm make mingw-w64-x86_64-toolchain mingw-w64-x86_64-gcc-fortran mingw-w64-x86_64-gcc-libgfortran mingw-w64-x86_64-gcc-libs mingw-w64-x86_64-gcc-lto-dump mingw-w64-x86_64-gcc-objc" - name: Build and Test Python 3.6 uses: actions/setup-python@v3