Skip to content

Commit ec752b3

Browse files
committed
feat: move lint to check job in ci workflow
1 parent fca8b71 commit ec752b3

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ jobs:
3434
TERM: xterm-256color
3535
run: xtask check format
3636
# --------------------------------------------------------------------------------
37+
- name: Lint
38+
run: xtask check lint
39+
# --------------------------------------------------------------------------------
3740
- name: Typos
3841
uses: tracel-ai/github-actions/check-typos@v8
3942

@@ -50,17 +53,20 @@ jobs:
5053
enable-cache: false
5154
apt-packages: ""
5255
# --------------------------------------------------------------------------------
53-
- name: Lint
54-
run: xtask check lint
55-
# --------------------------------------------------------------------------------
5656
- name: Unit Tests (default ROCm version)
5757
shell: bash
58-
run: xtask test unit
58+
run: |
59+
hipconfig -v
60+
xtask test unit
5961
# --------------------------------------------------------------------------------
6062
- name: Integration Tests (default ROCm version)
6163
shell: bash
62-
run: xtask test integration
64+
run: |
65+
hipconfig -v
66+
xtask test integration
6367
# --------------------------------------------------------------------------------
6468
- name: Documentation Tests
6569
shell: bash
66-
run: xtask doc tests
70+
run: |
71+
hipconfig -v
72+
xtask doc tests

0 commit comments

Comments
 (0)