Skip to content

Commit e4127b0

Browse files
committed
formatting
1 parent 2036867 commit e4127b0

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/build-pico-sdk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install CMake 3.30.2
3333
run: |
3434
ARCH=`uname -m`
35-
curl -L https://github.com/Kitware/CMake/releases/download/v3.30.2/cmake-3.30.2-linux-$ARCH.tar.gz -O
35+
curl -sL https://github.com/Kitware/CMake/releases/download/v3.30.2/cmake-3.30.2-linux-$ARCH.tar.gz -O
3636
tar xzf cmake-3.30.2-linux-$ARCH.tar.gz
3737
export PATH="`pwd`/cmake-3.30.2-linux-$ARCH/bin:$PATH"
3838
echo "PATH=$PATH" >> $GITHUB_ENV
@@ -48,7 +48,7 @@ jobs:
4848
- name: Download GNU ARM toolchain
4949
run: |
5050
ARCH=`uname -m`
51-
curl -L https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-$ARCH-arm-none-eabi.tar.xz -O
51+
curl -sL https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-$ARCH-arm-none-eabi.tar.xz -O
5252
tar xf arm-gnu-toolchain-13.3.rel1-$ARCH-arm-none-eabi.tar.xz
5353
5454
- name: Set Pico environment variables

.github/workflows/lint.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ jobs:
2121

2222
- name: Compare against swift-mmio swift-format config
2323
run: |
24-
curl -L https://raw.githubusercontent.com/apple/swift-mmio/refs/heads/main/SupportingFiles/Tools/swift-format/.swift-format \
25-
-o .swift-format-mmio
24+
curl -sL https://raw.githubusercontent.com/apple/swift-mmio/refs/heads/main/SupportingFiles/Tools/swift-format/.swift-format -o .swift-format-mmio
2625
diff .swift-format .swift-format-mmio
2726
2827
- name: Lint

.swift-format

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"fileScopedDeclarationPrivacy" : {
33
"accessLevel" : "private"
44
},
5+
"indentation" : {
6+
"spaces" : 2
7+
},
58
"indentConditionalCompilationBlocks" : false,
69
"indentSwitchCaseLabels" : false,
710
"lineBreakAroundMultilineExpressionChainComponents" : false,

0 commit comments

Comments
 (0)