Skip to content

Commit 39b0217

Browse files
committed
rename
1 parent 8507ad6 commit 39b0217

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Generate & Post Comment
5555
run: |
5656
(cd pr && . ./mfc.sh load -c p -m g)
57-
(cd pr && ./mfc.sh bench_diff ../master/bench-${{ matrix.device }}.yaml ../pr/bench-${{ matrix.device }}.yaml) > $GITHUB_STEP_SUMMARY
57+
(cd pr && ./mfc.sh bench_diff ../master/bench-${{ matrix.device }}.yaml ../pr/bench-${{ matrix.device }}.yaml)
5858
5959
- name: Archive Logs
6060
uses: actions/upload-artifact@v4

.github/workflows/line-count.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check Line Counts
1+
name: Lines of Code
22

33
on: [push, pull_request, workflow_dispatch]
44

@@ -49,5 +49,5 @@ jobs:
4949
cd $BASE
5050
export MFC_PR=$PR
5151
pwd
52-
./mfc.sh count_diff > $GITHUB_STEP_SUMMARY
52+
./mfc.sh count_diff
5353

.github/workflows/lint-source.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
filters: ".github/file-filter.yml"
2020

21-
lint:
21+
lint-source:
2222
name: Lint Source
2323
runs-on: 'ubuntu-latest'
2424

@@ -29,10 +29,4 @@ jobs:
2929
run: pip install fortitude-lint ansi2txt
3030

3131
- name: Lint the source code
32-
run: fortitude check --ignore=E001,S001,S101,M011,F001,S041,T001 ./src/*/* &> lint.txt || true
33-
34-
- name: Sanitize
35-
run: cat lint.txt | ansi2txt > lint2.txt
36-
37-
- name: Output Summary
38-
run: cat lint2.txt << EOF > $GITHUB_STEP_SUMMARY
32+
run: fortitude check --ignore=E001,S001,S101,M011,F001,S041,T001 ./src/*/* || true

.github/workflows/lint-toolchain.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ name: Lint Toolchain
33
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
6-
docs:
6+
lint-toolchain:
77
name: Lint Toolchain
88
runs-on: ubuntu-latest
99

1010
steps:
1111
- uses: actions/checkout@v4
1212

1313
- name: Lint the toolchain
14-
run: ./mfc.sh lint > $GITHUB_STEP_SUMMARY
14+
run: ./mfc.sh lint

0 commit comments

Comments
 (0)