Skip to content

Commit 2474d18

Browse files
committed
chore: put back quotes
1 parent 3c9deb5 commit 2474d18

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "CI"
1+
name: 'CI'
22

33
on:
44
push:
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v5
1414
- uses: actions/setup-python@v6
1515
with:
16-
python-version: "3.14"
16+
python-version: '3.14'
1717
- name: Install Dependencies
1818
run: make install
1919
- name: Lint
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
# vcrpy is not compatible with Python 3.14 yet so we cannot test against it
26-
pythonversion: ["3.9", "3.10", "3.11", "3.12", "3.13"]
26+
pythonversion: ['3.9', '3.10', '3.11', '3.12', '3.13']
2727
steps:
2828
- uses: actions/checkout@v5
2929
- uses: actions/setup-python@v6
@@ -38,7 +38,7 @@ jobs:
3838
uses: coverallsapp/github-action@master
3939
with:
4040
github-token: ${{ secrets.GITHUB_TOKEN }}
41-
path-to-lcov: "./coverage.lcov"
41+
path-to-lcov: './coverage.lcov'
4242
- name: Run security analysis
4343
run: make scan
4444
docs:
@@ -48,7 +48,7 @@ jobs:
4848
- uses: actions/checkout@v5
4949
- uses: actions/setup-python@v6
5050
with:
51-
python-version: "3.14"
51+
python-version: '3.14'
5252
- name: Install Dependencies
5353
run: make install
5454
- name: Generate Docs

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v5
1313
- uses: actions/setup-python@v6
1414
with:
15-
python-version: "3.14"
15+
python-version: '3.14'
1616
- name: Build package
1717
run: make install build
1818
- name: Publish to PyPI
@@ -22,5 +22,5 @@ jobs:
2222
- name: Upload assets to release
2323
uses: AButler/[email protected]
2424
with:
25-
files: "dist/*"
25+
files: 'dist/*'
2626
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)