Skip to content

Commit 25d619b

Browse files
committed
use self hosted runner
1 parent e7334f4 commit 25d619b

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/scripts/tests.sh

100644100755
File mode changed.

.github/workflows/build-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
build-docc:
12-
runs-on: macos-12
12+
runs-on: [self-hosted, macOS]
1313
steps:
1414
- name: Checkout repository
1515
uses: actions/checkout@v1

.github/workflows/swiftlint.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ on:
1616
- '**/*.swift'
1717
jobs:
1818
SwiftLint:
19-
runs-on: ubuntu-latest
19+
runs-on: [self-hosted, macOS]
2020
steps:
2121
- uses: actions/checkout@v1
2222
- name: GitHub Action for SwiftLint with --strict
23-
uses: norio-nomura/[email protected]
24-
with:
25-
args: --strict
23+
run: swiftlint --strict
24+
# uses: norio-nomura/[email protected]
25+
# with:
26+
# args: --strict

.github/workflows/tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@ on:
1212
jobs:
1313
code-edit-text-view-tests:
1414
name: Testing CodeEditLanguages
15-
runs-on: macos-12
15+
runs-on: [self-hosted, macOS]
1616
steps:
1717
- name: Checkout repository
1818
uses: actions/checkout@v1
19-
- name: Make executeable
20-
run: chmod +x ./.github/scripts/tests.sh
2119
- name: Testing Package
22-
run: exec ./.github/scripts/tests.sh
20+
run: exec ./.github/scripts/tests.sh arm

0 commit comments

Comments
 (0)