Skip to content

Commit 7b57b69

Browse files
authored
Repository cleanup.
2 parents 59f6b4e + 11276a1 commit 7b57b69

File tree

3 files changed

+22
-9
lines changed

3 files changed

+22
-9
lines changed

.github/workflows/Pipeline.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ name: Pipeline
33
on:
44
push:
55
workflow_dispatch:
6-
7-
defaults:
8-
run:
9-
shell: bash
6+
schedule:
7+
- cron: '0 0 * * 5'
108

119
jobs:
1210

.gitignore

+17-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,24 @@
22
__pycache__/
33
*.py[cod]
44

5+
# Coverage.py
6+
.coverage
7+
.cov
8+
coverage.xml
9+
10+
# setuptools
11+
/build/**/*.*
12+
/dist/**/*.*
13+
/*.egg-info
14+
15+
# Dependencies
16+
!requirements.txt
17+
518
# Sphinx documentation
6-
doc/_build
7-
doc/_theme
19+
/doc/_build/
20+
/doc/_theme/
21+
/doc/pyEDAA.Launcher/**/*.*
22+
!/doc/pyEDAA.Launcher/index.rst
823

924
# PyCharm project
1025
/.idea/workspace.xml
11-
12-
# VSCode settings
13-
/.vscode

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"files.trimTrailingWhitespace": false,
3+
}

0 commit comments

Comments
 (0)