@@ -17,20 +17,15 @@ permissions:
1717
1818jobs :
1919 Linux :
20- runs-on : ${{ matrix.os }}
21- strategy :
22- matrix :
23- include :
24- - { os: ubuntu-latest, python-version: "3.x" }
25-
20+ runs-on : ubuntu-latest
2621 steps :
2722 - name : Checkout repository
2823 uses : actions/checkout@v4
2924
3025 - name : Set up Python
3126 uses : actions/setup-python@v5
3227 with :
33- python-version : ${{ matrix.python-version }}
28+ python-version : " 3.x "
3429
3530 - name : Install dependencies
3631 run : |
@@ -42,20 +37,15 @@ jobs:
4237 python3 ./reader/reader.py --help
4338
4439 macOS :
45- runs-on : ${{ matrix.os }}
46- strategy :
47- matrix :
48- include :
49- - { os: macos-latest, python-version: "3.x" }
50-
40+ runs-on : macos-latest
5141 steps :
5242 - name : Checkout repository
5343 uses : actions/checkout@v4
5444
5545 - name : Set up Python
5646 uses : actions/setup-python@v5
5747 with :
58- python-version : ${{ matrix.python-version }}
48+ python-version : " 3.x "
5949
6050 - name : Install dependencies
6151 run : |
@@ -67,20 +57,15 @@ jobs:
6757 python3 ./reader/reader.py --help
6858
6959 Windows :
70- runs-on : ${{ matrix.os }}
71- strategy :
72- matrix :
73- include :
74- - { os: windows-latest, python-version: "3.x" }
75-
60+ runs-on : windows-latest
7661 steps :
7762 - name : Checkout repository
7863 uses : actions/checkout@v4
7964
8065 - name : Set up Python
8166 uses : actions/setup-python@v5
8267 with :
83- python-version : ${{ matrix.python-version }}
68+ python-version : " 3.x "
8469
8570 - name : Install dependencies
8671 run : |
0 commit comments