Skip to content

Commit

Permalink
Merge branch 'main' into antonpirker/run-tests-in-python-313
Browse files Browse the repository at this point in the history
  • Loading branch information
antonpirker committed Sep 25, 2024
2 parents 12ef0b7 + f15821f commit c4d5b6c
Show file tree
Hide file tree
Showing 137 changed files with 12,640 additions and 892 deletions.
2,257 changes: 2,257 additions & 0 deletions .github/workflows/contrib_0.yml

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions .github/workflows/generate_workflows.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from pathlib import Path

from generate_workflows_lib import (
generate_test_workflow,
generate_lint_workflow,
generate_contrib_workflow,
generate_misc_workflow
)

tox_ini_path = Path(__file__).parent.parent.parent.joinpath("tox.ini")
workflows_directory_path = Path(__file__).parent

generate_test_workflow(
tox_ini_path,
workflows_directory_path,
"ubuntu-latest",
"windows-latest",
)
generate_lint_workflow(tox_ini_path, workflows_directory_path)
generate_contrib_workflow(workflows_directory_path)
generate_misc_workflow(tox_ini_path, workflows_directory_path)
72 changes: 0 additions & 72 deletions .github/workflows/lint.yml

This file was deleted.

Loading

0 comments on commit c4d5b6c

Please sign in to comment.