Skip to content

Commit

Permalink
Create test_313-313t.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
colesbury authored Nov 13, 2024
1 parent e2fd336 commit 8983371
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/test_313-313t.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Test Multiple Python Versions (3.13 -> 3.13t)

on:
workflow_dispatch:

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
steps:
- uses: actions/checkout@v4

- name: Set up Python 1
uses: Quansight-Labs/setup-python@v5
with:
python-version: "3.13"

- name: Display Python version 1
run: python -c "import sys; print(sys.version)"

- run: python -VVV

- run: |
python -m pip install numpy
python -c "import numpy; print(numpy.random.randn(10))"
- name: Set up Python 2
uses: Quansight-Labs/setup-python@v5
with:
python-version: "3.13t"

- name: Display Python version 2
run: python -c "import sys; print(sys.version)"

- run: python -VVV

- run: |
python -m pip install numpy
python -c "import numpy; print(numpy.random.randn(10))"

0 comments on commit 8983371

Please sign in to comment.