Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePopoloski authored Nov 14, 2023
1 parent eae2667 commit 85e3957
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [windows-latest, macos-13, ubuntu-latest]
platform: [windows-latest, macos-13, ubuntu-22.04]
python-version: ["3.10", "pypy-3.8"]
steps:
- uses: actions/checkout@v3
Expand All @@ -32,6 +32,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Update GCC
if: matrix.os == 'ubuntu-22.04'
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 85e3957

Please sign in to comment.