Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a31cf34

Browse files
committedMar 24, 2023
add CI lint
1 parent 3e83abf commit a31cf34

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed
 
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
set -ex
4+
5+
source $(dirname "$0")/env_setup.sh
6+
7+
setup_lint_env
8+
9+
python3 -m tox -e format
10+
python3 -m tox -e lint
11+
python3 -m tox -e isort
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Continuous Integration
2+
3+
on:
4+
push:
5+
6+
permissions:
7+
id-token: write
8+
contents: read
9+
pull-requests: write # For removing tags from the PR
10+
11+
defaults:
12+
run:
13+
shell: bash
14+
15+
jobs:
16+
lint_check:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v3
21+
- name: Set up Python
22+
uses: actions/setup-python@v4
23+
with:
24+
python-version: '3.8'
25+
- name: Lint Check
26+
run: |
27+
chmod +x ./.github/workflow_scripts/lint_check.sh && ./.github/workflow_scripts/lint_check.sh
28+

0 commit comments

Comments
 (0)
Please sign in to comment.