Skip to content

Commit 484615d

Browse files
committed
chore: Merge remote-tracking branch 'upstream/main'
2 parents d731803 + ea36c5d commit 484615d

File tree

130 files changed

+11311
-1529
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+11311
-1529
lines changed

.github/workflows/contrib_0.yml

Lines changed: 2229 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from pathlib import Path
2+
3+
from generate_workflows_lib import (
4+
generate_test_workflow,
5+
generate_lint_workflow,
6+
generate_contrib_workflow,
7+
generate_misc_workflow
8+
)
9+
10+
tox_ini_path = Path(__file__).parent.parent.parent.joinpath("tox.ini")
11+
workflows_directory_path = Path(__file__).parent
12+
13+
generate_test_workflow(
14+
tox_ini_path,
15+
workflows_directory_path,
16+
"ubuntu-latest",
17+
"windows-latest",
18+
)
19+
generate_lint_workflow(tox_ini_path, workflows_directory_path)
20+
generate_contrib_workflow(workflows_directory_path)
21+
generate_misc_workflow(tox_ini_path, workflows_directory_path)

.github/workflows/lint.yml

Lines changed: 0 additions & 71 deletions
This file was deleted.

0 commit comments

Comments
 (0)