Skip to content

Commit bdd6494

Browse files
committed
update
1 parent cf14135 commit bdd6494

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
trim_trailing_whitespace = true
6+
7+
# 4 space indentation
8+
[*.swift]
9+
indent_style = space
10+
indent_size = 4

.github/workflows/doc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ on:
77

88
jobs:
99
doc:
10-
runs-on: macos-latest
10+
runs-on: ubuntu-latest
1111

1212
steps:
1313
- name: Checkout repo
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Publish Jazzy Docs
1717
uses: steven0351/publish-jazzy-docs@v1

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ on:
1010

1111
jobs:
1212
test:
13-
runs-on: macos-11
13+
runs-on: ubuntu-latest
1414

1515
steps:
1616
- name: Checkout repo
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818

1919
- name: Lint code
2020
run: swiftlint lint
2121

2222
- name: Run tests
23-
run: swift test --enable-test-discovery
23+
run: swift test

0 commit comments

Comments
 (0)