We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dff688 commit 08c55fbCopy full SHA for 08c55fb
.github/workflows/examples-test.yml
@@ -101,17 +101,18 @@ jobs:
101
# and not fully implemented
102
103
steps:
104
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
105
106
- name: Set up Python ${{ matrix.python-version }}
107
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
108
with:
109
python-version: ${{ matrix.python-version }}
110
111
- name: Install dependencies
112
run: |
113
python -m pip install --upgrade pip
114
- if [ -f requirements.txt ]; then pip install -r requirements.txt; else pip install -e .; fi
+ pip install -r requirements.txt
115
+ pip install -e .
116
shell: bash
117
118
- name: Run ${{ matrix.combination.example }} on ${{ matrix.combination.backend }} backend
0 commit comments