We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7853a0 commit 79952cfCopy full SHA for 79952cf
.github/workflows/build-pipeline.yml
@@ -1,5 +1,4 @@
1
-# GitHub CI build pipeline
2
-name: {{ cookiecutter.project_slug }} CI build
+name: "{{ cookiecutter.project_slug }} CI build"
3
4
on:
5
pull_request:
@@ -8,7 +7,7 @@ on:
8
7
- main
9
jobs:
10
build:
11
- runs-on: {% raw %} ${{ matrix.os }} {% endraw %}
+ runs-on: "{% raw %} ${{ matrix.os }} {% endraw %}"
12
env:
13
PYTHONIOENCODING: "utf8"
14
strategy:
@@ -21,7 +20,7 @@ jobs:
21
20
- name: Set up Python
22
uses: actions/setup-python@v5
23
with:
24
- python-version: {% raw %} ${{ matrix.python-version }} {% endraw %}
+ python-version: "{% raw %} ${{ matrix.python-version }} {% endraw %}"
25
- name: Install dependencies
26
run: |
27
python -m pip install --upgrade pip
0 commit comments