Skip to content

Commit 9af4d3b

Browse files
committed
use mfc.sh init because it is useful
1 parent e8bd9ab commit 9af4d3b

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/formatting.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v4
1212

13+
- name: MFC Python setup
14+
run: ./mfc.sh init
15+
1316
- name: Check formatting
1417
run: |
15-
./mfc.sh &> tmp.txt || true
1618
./mfc.sh format -j $(nproc)
1719
git diff --exit-code

.github/workflows/line-count.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ jobs:
4949
cd $BASE
5050
export MFC_PR=$PR
5151
pwd
52-
./mfc.sh &> tmp.txt || true
52+
./mfc.sh init &> tmp.txt || true
5353
./mfc.sh count_diff
5454

.github/workflows/lint-toolchain.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v4
1212

13-
- name: Python setup
14-
run: ./mfc.sh || true
13+
- name: MFC Python setup
14+
run: ./mfc.sh init
1515

1616
- name: Lint the toolchain
1717
run: ./mfc.sh lint

.github/workflows/spelling.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
- name: Checkout
1111
uses: actions/checkout@v4
1212

13-
- name: Python setup
14-
run: ./mfc.sh || true
13+
- name: MFC Python setup
14+
run: ./mfc.sh init
1515

1616
- name: Spell Check
1717
run: ./mfc.sh spelling

0 commit comments

Comments
 (0)