Skip to content

Commit 98491aa

Browse files
Initial commit (#1)
1 parent 24d2293 commit 98491aa

38 files changed

Lines changed: 2238 additions & 1 deletion

.devcontainer

Submodule .devcontainer added at 0ddb12b

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
- package-ecosystem: "gitsubmodule"
9+
directory: "/"
10+
schedule:
11+
interval: "daily"

.github/workflows/ci.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
tags: [v*.*.*]
7+
8+
pull_request:
9+
branches: [ "main" ]
10+
types:
11+
- synchronize
12+
- opened
13+
- reopened
14+
15+
jobs:
16+
call_ci:
17+
uses: EffectiveRange/ci-workflows/.github/workflows/python-ci.yaml@latest-python

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule ".devcontainer"]
2+
path = .devcontainer
3+
url = https://github.com/EffectiveRange/devcontainer-defs

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/python-hello.iml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.vscode/launch.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Python Debugger: Current File",
6+
"type": "debugpy",
7+
"request": "launch",
8+
"program": "${file}",
9+
"args": [
10+
"--backend=scipy"
11+
],
12+
"console": "integratedTerminal"
13+
},
14+
{
15+
"name": "Run All Tests (pytest)",
16+
"type": "debugpy",
17+
"request": "launch",
18+
"module": "pytest",
19+
"args": [
20+
"tests"
21+
],
22+
"console": "integratedTerminal"
23+
},
24+
{
25+
"name": "Run All Tests with Coverage (pytest-cov)",
26+
"type": "debugpy",
27+
"request": "launch",
28+
"module": "pytest",
29+
"args": [
30+
"--cov=hello", "tests"
31+
],
32+
"console": "integratedTerminal"
33+
}
34+
]
35+
}

0 commit comments

Comments
 (0)