Fix broken macOS CI (change Python version)

This commit is contained in:
Emmanuel Engelhart 2022-11-17 11:32:38 +01:00
parent 7743e73ede
commit d66cc6286c
No known key found for this signature in database
GPG Key ID: 120B30D020B553D3
1 changed files with 4 additions and 4 deletions

View File

@ -12,14 +12,14 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Setup python 3.10 - name: Setup python 3.9
uses: actions/setup-python@v2 uses: actions/setup-python@v1
with: with:
python-version: '3.10' python-version: '3.9'
- name: Install packages - name: Install packages
run: | run: |
brew update brew update
brew install gcovr pkg-config ninja brew install gcovr pkg-config ninja || brew link --overwrite python
- name: Install python modules - name: Install python modules
run: pip3 install meson==0.49.2 pytest run: pip3 install meson==0.49.2 pytest
- name: Install deps - name: Install deps