We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f54ff1b commit 6efa09dCopy full SHA for 6efa09d
.editorconfig
@@ -0,0 +1,14 @@
1
+; This file is for unifying the coding style for different editors and IDEs.
2
+; More information at http://editorconfig.org
3
+
4
+root = true
5
6
+[*]
7
+charset = utf-8
8
+indent_style = space
9
+indent_size = 2
10
+insert_final_newline = true
11
+trim_trailing_whitespace = true
12
13
+[Makefile]
14
+indent_style = tab
.github/workflows/checks.yml
@@ -0,0 +1,24 @@
+name: Checks
+on:
+ - push
+jobs:
+ build:
+ runs-on: macos-latest
+ steps:
+ - uses: actions/checkout@v3
+ - uses: swift-actions/setup-swift@v2
+ with:
15
+ swift-version: "6.1.2"
16
17
+ - name: Install dependencies
18
+ run: swift package resolve
19
20
+ - name: Build
21
+ run: swift build
22
23
+ - name: Test
24
+ run: swift test
0 commit comments