Skip to content

Commit 10c9b35

Browse files
committed
test CI
1 parent dca4af6 commit 10c9b35

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
python-version: 3.8
2020

2121
- uses: actions/cache@v1
22+
id: cache
2223
with:
2324
path: ~/.cache/pip
2425
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
@@ -52,7 +53,7 @@ jobs:
5253
fetch-depth: 1
5354

5455
- name: Set up Python 3.7
55-
uses: actions/setup-python@v1
56+
uses: actions/setup-python@v2
5657
with:
5758
python-version: 3.7
5859

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ pylint.out
1414
posthog-analytics
1515
.idea
1616
.python-version
17-
.coverage
17+
.coverage
18+
pyrightconfig.json

example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# PostHog Python library example
22

33
# Import the library
4-
import time
4+
# import time
55

66
import posthog
77

0 commit comments

Comments
 (0)