Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePopoloski authored May 18, 2024
1 parent 5d12a87 commit f46a3b8
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [windows-latest, macos-13, ubuntu-latest]
python-version: ["3.10", "pypy-3.9"]
platform: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.11", "pypy-3.9"]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -24,19 +24,10 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: maxim-lobanov/setup-xcode@v1
if: matrix.platform == 'macos-13'
with:
xcode-version: 'latest'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Update GCC
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y g++-11
- name: Build and install
run: pip install --verbose .
- name: Test
Expand Down

0 comments on commit f46a3b8

Please sign in to comment.