99 runs-on : ${{ matrix.os }}
1010 strategy :
1111 matrix :
12- python-version : [3.8, 3. 9, '3.10', '3.11', '3.12']
12+ python-version : [3.9, '3.10', '3.11', '3.12']
1313 os : ['ubuntu-latest', 'macos-latest', 'windows-latest']
1414
1515 steps :
16- - uses : actions/checkout@v3
16+ - uses : actions/checkout@main
1717 - name : Set up Python ${{ matrix.python-version }}
18- uses : actions/setup-python@v4
18+ uses : actions/setup-python@main
1919 with :
2020 python-version : ${{ matrix.python-version }}
2121
3030 run : |
3131 python -m pip install --upgrade pip
3232 pip install setuptools wheel
33- pip install flake8 pytest pytest-cov coveralls
33+ pip install flake8 pytest==6.2.5 pytest-cov coveralls
3434 - name : Install package requirements
3535 run : pip install -r requirements.txt
3636 - name : Install package
@@ -56,13 +56,13 @@ jobs:
5656
5757 runs-on : ubuntu-latest
5858 steps :
59- - uses : actions/checkout@v3
59+ - uses : actions/checkout@main
6060 - name : Set up Python
61- uses : actions/setup-python@v4
61+ uses : actions/setup-python@main
6262 with :
6363 python-version : ' 3.x'
6464 - name : Cache pip
65- uses : actions/cache@v3
65+ uses : actions/cache@main
6666 with :
6767 # This path is specific to Ubuntu
6868 path : ~/.cache/pip
0 commit comments