Skip to content

Commit 8c07482

Browse files
committed
Chore: Naming things. Minor fixes.
1 parent 44ac2c5 commit 8c07482

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1-
name: Run CI
1+
name: Tests
22

33
on:
4+
pull_request: ~
45
push:
5-
pull_request:
6+
branches: [ main ]
7+
8+
# Allow job to be triggered manually.
69
workflow_dispatch:
710

11+
# Run job each night.
12+
schedule:
13+
- cron: '0 3 * * *'
14+
815
# Cancel in-progress jobs when pushing to the same branch.
916
concurrency:
1017
cancel-in-progress: true

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release new version
1+
name: Release
22

33
on:
44
push:

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,9 @@ ENV/
113113
env.bak/
114114
venv.bak/
115115

116+
# PyCharm project settings
117+
.idea
118+
116119
# Spyder project settings
117120
.spyderproject
118121
.spyproject

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Usage
7474

7575
.. code-block:: console
7676
77-
python -m http.server -d build
77+
python -m http.server -d _build/html
7878
7979
Please access http://localhost:8000/search.html
8080

docs/_static/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)