Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
superbenchmark
Commits
37a70cbe
Commit
37a70cbe
authored
Apr 18, 2026
by
one
Browse files
Update ci workflows
parent
2bf01d5e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
0 deletions
+44
-0
.github/workflows/codeql-analysis.yml
.github/workflows/codeql-analysis.yml
+2
-0
.github/workflows/lint.yml
.github/workflows/lint.yml
+1
-0
.github/workflows/python-checks.yml
.github/workflows/python-checks.yml
+41
-0
No files found.
.github/workflows/codeql-analysis.yml
View file @
37a70cbe
...
...
@@ -5,10 +5,12 @@ on:
branches
:
-
main
-
release/*
-
dtk
pull_request
:
branches
:
-
main
-
release/*
-
dtk
schedule
:
-
cron
:
"
30
1
*
*
1"
...
...
.github/workflows/lint.yml
View file @
37a70cbe
...
...
@@ -5,6 +5,7 @@ on:
branches
:
-
main
-
release/*
-
dtk
jobs
:
spelling
:
...
...
.github/workflows/python-checks.yml
0 → 100644
View file @
37a70cbe
name
:
Python Checks
on
:
push
:
branches
:
-
dtk
pull_request
:
branches
:
-
dtk
workflow_dispatch
:
jobs
:
checks
:
name
:
Python format, lint, and unit test
runs-on
:
ubuntu-latest
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v4
-
name
:
Set up Python
uses
:
actions/setup-python@v5
with
:
python-version
:
'
3.11'
-
name
:
Install dependencies
run
:
|
python -m pip install --upgrade pip
python -m pip install -e .[test]
-
name
:
Check formatting
run
:
|
python -m yapf --diff --recursive superbench tests
-
name
:
Lint
run
:
|
python -m flake8 superbench tests
python -m mypy superbench tests
-
name
:
Run runner unit tests
run
:
|
python -m pytest tests/runner/test_runner.py -v
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment