@@ -15,10 +15,10 @@ jobs:
1515 strategy :
1616 matrix :
1717 os : [ubuntu-latest, windows-latest, macOS-latest]
18- python-version : ["3.8 "]
18+ python-version : ["3.9 "]
1919 include :
2020 - os : ubuntu-latest
21- python-version : " 3.9 "
21+ python-version : " 3.8 "
2222 - os : ubuntu-latest
2323 python-version : " 3.10"
2424 - os : ubuntu-latest
4949 run : |
5050 python -m pytest --cov=pydantic2ts --cov-append
5151 - name : Run tests against 'pydantic==1.8.2'
52- if : ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8 ' }}
52+ if : ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9 ' }}
5353 run : |
5454 python -m pip install 'pydantic==1.8.2'
5555 python -m pip install -U .
@@ -59,11 +59,11 @@ jobs:
5959 coverage combine
6060 coverage report
6161 - name : Generate LCOV File
62- if : ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8 ' }}
62+ if : ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9 ' }}
6363 run : |
6464 coverage lcov -o coverage.lcov
6565 - name : Coveralls
66- if : ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8 ' }}
66+ if : ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9 ' }}
6767 uses : coverallsapp/github-action@master
6868 with :
6969 github-token : ${{ secrets.GITHUB_TOKEN }}
@@ -75,10 +75,10 @@ jobs:
7575 needs : test
7676 steps :
7777 - uses : actions/checkout@v3
78- - name : Set up Python 3.8
78+ - name : Set up Python 3.9
7979 uses : actions/setup-python@v4
8080 with :
81- python-version : 3.8
81+ python-version : 3.9
8282 - name : Install dependencies
8383 run : |
8484 python -m pip install -U pip wheel
0 commit comments