Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,8 @@ jobs:
rm '/usr/local/bin/idle3'
rm '/usr/local/bin/idle3.12'
rm '/usr/local/bin/idle3.13'
rm '/usr/local/bin/pip3.12'
rm '/usr/local/bin/pip3.13'
rm '/usr/local/bin/pydoc3'
rm '/usr/local/bin/pydoc3.12'
rm '/usr/local/bin/pydoc3.13'
Expand All @@ -533,13 +535,7 @@ jobs:
rm '/usr/local/bin/python3-config'
rm '/usr/local/bin/python3.12-config'
rm '/usr/local/bin/python3.13-config'
brew install python

- name: Setup python
id: python
uses: actions/setup-python@v5
with:
python-version: '3.11'
brew install python3

- name: Configure formula
run: |
Expand Down Expand Up @@ -630,6 +626,12 @@ jobs:
token: ${{ secrets.GH_BOT_TOKEN }}
validate: true

- name: Setup python
id: python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Generate gcov report
id: test_report
# any except canceled or skipped
Expand Down
Loading