mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-15 02:38:30 +02:00
fix syntax error
This commit is contained in:
parent
be5e4954ea
commit
13f47c71c7
1 changed files with 2 additions and 2 deletions
4
.github/workflows/testing.yaml
vendored
4
.github/workflows/testing.yaml
vendored
|
@ -46,11 +46,11 @@ jobs:
|
||||||
key: ${{ runner.os }}-${{ hashFiles('poetry.lock') }}-${{ matrix.python-version }}-v2
|
key: ${{ runner.os }}-${{ hashFiles('poetry.lock') }}-${{ matrix.python-version }}-v2
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
if: ${{ matrix.python-version != 3.10-dev }}
|
if: ${{ matrix.python-version != '3.10-dev' }}
|
||||||
run: pip install poetry
|
run: pip install poetry
|
||||||
|
|
||||||
- name: Install dependencies (Prerelease)
|
- name: Install dependencies (Prerelease)
|
||||||
if: ${{ matrix.python-version == 3.10-dev }}
|
if: ${{ matrix.python-version == '3.10-dev' }}
|
||||||
run: pip install poetry==1.2.0a1
|
run: pip install poetry==1.2.0a1
|
||||||
|
|
||||||
- name: Configure poetry
|
- name: Configure poetry
|
||||||
|
|
Loading…
Add table
Reference in a new issue