Skip to content

Commit 86e8e28

Browse files
committed
Fix typo
1 parent 7a6cf43 commit 86e8e28

File tree

1 file changed

+6
-6
lines changed
  • template/{% if github_actions %}.github{% endif %}/workflows

1 file changed

+6
-6
lines changed

template/{% if github_actions %}.github{% endif %}/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
uses: actions/cache@v3
5050
with:
5151
path: ${{ env.POETRY_HOME }}
52-
key: ${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('./pyproject.toml') }}-{{ hashFiles('./poetry.lock') }}
52+
key: ${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('./pyproject.toml') }}-${{ hashFiles('./poetry.lock') }}
5353
- name: Install package
5454
run: make install
5555
if: steps.cached-poetry.outputs.cache-hit != 'true'
@@ -67,7 +67,7 @@ jobs:
6767
uses: actions/cache@v3
6868
with:
6969
path: ${{ env.POETRY_HOME }}
70-
key: ${{ runner.os }}-${{ env.DEFAULT_PYTHON }}-${{ hashFiles('./pyproject.toml') }}-{{ hashFiles('./poetry.lock') }}
70+
key: ${{ runner.os }}-${{ env.DEFAULT_PYTHON }}-${{ hashFiles('./pyproject.toml') }}-${{ hashFiles('./poetry.lock') }}
7171
- name: Build wheel
7272
run: make build
7373
- name: Archive build artifacts
@@ -90,7 +90,7 @@ jobs:
9090
uses: actions/cache@v3
9191
with:
9292
path: ${{ env.POETRY_HOME }}
93-
key: ${{ runner.os }}-${{ env.DEFAULT_PYTHON }}-${{ hashFiles('./pyproject.toml') }}-{{ hashFiles('./poetry.lock') }}
93+
key: ${{ runner.os }}-${{ env.DEFAULT_PYTHON }}-${{ hashFiles('./pyproject.toml') }}-${{ hashFiles('./poetry.lock') }}
9494
- name: Run metrics checks
9595
run: make metrics
9696
unit-tests:
@@ -111,7 +111,7 @@ jobs:
111111
uses: actions/cache@v3
112112
with:
113113
path: ${{ env.POETRY_HOME }}
114-
key: ${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('./pyproject.toml') }}-{{ hashFiles('./poetry.lock') }}
114+
key: ${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('./pyproject.toml') }}-${{ hashFiles('./poetry.lock') }}
115115
- name: Run unit tests
116116
run: make unit-test
117117
integration-tests:
@@ -132,7 +132,7 @@ jobs:
132132
uses: actions/cache@v3
133133
with:
134134
path: ${{ env.POETRY_HOME }}
135-
key: ${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('./pyproject.toml') }}-{{ hashFiles('./poetry.lock') }}
135+
key: ${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('./pyproject.toml') }}-${{ hashFiles('./poetry.lock') }}
136136
- name: Run integration tests
137137
run: make integration-test
138138
coverage:
@@ -149,7 +149,7 @@ jobs:
149149
uses: actions/cache@v3
150150
with:
151151
path: ${{ env.POETRY_HOME }}
152-
key: ${{ runner.os }}-${{ env.DEFAULT_PYTHON }}-${{ hashFiles('./pyproject.toml') }}-{{ hashFiles('./poetry.lock') }}
152+
key: ${{ runner.os }}-${{ env.DEFAULT_PYTHON }}-${{ hashFiles('./pyproject.toml') }}-${{ hashFiles('./poetry.lock') }}
153153
- name: Run coverage
154154
run: make coverage
155155
mypy:

0 commit comments

Comments
 (0)