From fbdb9d0827d5af58712e9e69e0011e0f20a85718 Mon Sep 17 00:00:00 2001 From: Christopher Pickering Date: Wed, 6 Jul 2022 11:57:13 -0500 Subject: [PATCH] changed xcode install in action --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a2d225..62b313d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,11 +48,14 @@ jobs: fail-fast: true steps: - - name: install xcode-select + - name: install xcode if: ${{ matrix.os == 'macos-latest' }} uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: latest-stable + - name: install xcode cli tools + if: ${{ matrix.os == 'macos-latest' }} + run: xcode-select --install - name: checkout uses: actions/checkout@v3 - name: setup python ${{ matrix.python-version }} on ${{ matrix.os }}