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 4ecaef5 commit a679dfcCopy full SHA for a679dfc
.github/workflows/ruff.yml
@@ -0,0 +1,16 @@
1
+name: Lint and format
2
+
3
+on:
4
+ push:
5
+ branches: [ '**' ]
6
+ workflow_dispatch:
7
8
+jobs:
9
+ check:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: astral-sh/ruff-action@v1
14
+ with:
15
+ args: check
16
+ src: "."
.gitignore
@@ -15,3 +15,6 @@ riscv-isac/riscv-env
__pycache__
17
riscof_work
18
19
+# ignore ruff cache
20
+.ruff_cache
0 commit comments