File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -11,25 +11,26 @@ jobs:
1111 strategy :
1212 matrix :
1313 platform : [windows-latest, macos-latest, ubuntu-latest]
14- python-version : ["3.8", "3.10 "]
14+ python-version : ["3.8", "3.11 "]
1515 runs-on : ${{ matrix.platform }}
1616
1717 steps :
1818 - name : Check out repository
19- uses : actions/checkout@v2
19+ uses : actions/checkout@v3
2020
2121 - name : Prepare python ${{ matrix.python-version }}
22- uses : actions/setup-python@v1
22+ uses : actions/setup-python@v4
2323 with :
2424 python-version : ${{ matrix.python-version }}
2525
2626 - name : Get pip cache directory
2727 id : pip_cache_dir
2828 run : |
29- echo "::set-output name=dir::$(pip cache dir)"
29+ echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
30+ shell : bash
3031
3132 - name : Cache
32- uses : actions/cache@v1
33+ uses : actions/cache@v3
3334 with :
3435 path : ${{ steps.pip_cache_dir.outputs.dir }}
3536 key : ${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/.ci_pip_reqs.txt') }}-${{ hashFiles('**/setup.py') }}
4950 run : tox -e unit
5051
5152 - name : Coverage
52- uses : codecov/codecov-action@v1
53+ uses : codecov/codecov-action@v3
5354 with :
5455 token : ${{ secrets.CODECOV_TOKEN }}
5556 file : ./coverage.xml
Original file line number Diff line number Diff line change 1010
1111 steps :
1212 - name : Check out repository
13- uses : actions/checkout@v2
13+ uses : actions/checkout@v3
1414 - name : Set up python
15- uses : actions/setup-python@v1
15+ uses : actions/setup-python@v4
1616 with :
1717 python-version : 3.8
1818 - name : Install dependencies
You can’t perform that action at this time.
0 commit comments