Skip to content

Commit abeed2f

Browse files
authored
Merge branch 'develop' into vis_skipempty
2 parents 11fb5f2 + a7e2944 commit abeed2f

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/ci_tests.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff 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') }}
@@ -49,7 +50,7 @@ jobs:
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

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
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

0 commit comments

Comments
 (0)