Skip to content

Commit

Permalink
Test checks on os + python version
Browse files Browse the repository at this point in the history
  • Loading branch information
nhuet committed Oct 24, 2024
1 parent f250798 commit b1161a6
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,16 @@ jobs:
get-archi:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
os: ["macos-latest", "macos-12"]
arch: ["arm64", "x86_64"]
exclude:
- os: macos-12
arch: arm64
- os: macos-latest
arch: x86_64
python-version: ["3.9", "3.12"]
os: ["macos-latest", "macos-12", "windows-latest", "ubuntu-latest"]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- run: |
echo ${{ matrix }}
uname -a
if [ "${{ startsWith(matrix.os, 'windows') || (startsWith(matrix.os, 'macos') && matrix.python-version == '3.12') }}" == true ]; then
echo "install toulbar2"
pip install "${wheelfile}[toulbar]"
python -c "import pytoulbar2"
fi

0 comments on commit b1161a6

Please sign in to comment.