We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efa0402 commit ce3f282Copy full SHA for ce3f282
.github/workflows/code_formatting.yml
@@ -7,8 +7,6 @@ jobs:
7
runs-on: ubuntu-latest
8
steps:
9
- uses: actions/checkout@v3
10
- - run: pip install --user ruff
11
- - run: ruff --format=github .
12
- uses: actions/setup-python@v4
13
- name: Install packages
14
run: source tools/ci.sh && ci_code_formatting_setup
.github/workflows/ruff.yml
@@ -0,0 +1,10 @@
1
+# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
2
+name: Python code lint with ruff
3
+on: [push, pull_request]
4
+jobs:
5
+ ruff:
6
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - run: pip install --user ruff
+ - run: ruff --format=github .
0 commit comments