Skip to content

Commit 5a8f018

Browse files
committed
Test
1 parent 3921010 commit 5a8f018

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/python-app-2.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Test Python Versions
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13]
12+
python-version: ['3.13', '3.12']
13+
14+
env:
15+
PIP_NO_PYTHON_VERSION_WARNING: 1
16+
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v4
20+
21+
- name: Set up Python ${{ matrix.python-version }}
22+
uses: actions/setup-python@v5
23+
# uses: priyagupta108/setup-python@test-1034-fix
24+
with:
25+
python-version: ${{ matrix.python-version }}
26+
cache: 'pip'
27+
# cache-dependency-path:
28+
# requirements/*.txt
29+
30+
- name: Install dependencies
31+
run: |
32+
python -m pip install --upgrade pip
33+
pip install -r requirements/requirements.txt
34+

0 commit comments

Comments
 (0)