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:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup python 3.10
uses: actions/setup-python@v2
- name: Setup python 3.9
uses: actions/setup-python@v1
with:
python-version: '3.10'
python-version: '3.9'
- name: Install packages
run: |
brew update
brew install gcovr pkg-config ninja
brew install gcovr pkg-config ninja || brew link --overwrite python
- name: Install python modules
run: pip3 install meson==0.49.2 pytest
- name: Install deps