From e6344aab527407ce65e123070d64032875203f7d Mon Sep 17 00:00:00 2001 From: Alexis Montoison Date: Fri, 5 Apr 2024 11:51:48 -0400 Subject: [PATCH] update ci.yml --- .github/workflows/ci.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3e1f798..79690c1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,15 +27,14 @@ jobs: arch: x64 allow_failure: true steps: - - uses: actions/checkout@v3 - - name: Set up Homebrew - id: set-up-homebrew - uses: Homebrew/actions/setup-homebrew@master - if: matrix.os == 'macOS-latest' - - name: Install gcc - run: brew reinstall gcc + - uses: actions/checkout@v4 + - name: Install compilers + uses: fortran-lang/setup-fortran@main + with: + compiler: 'gcc' + version: '11' if: matrix.os == 'macOS-latest' - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }}