Skip to content

Commit

Permalink
[misc] fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
markusyeo committed Mar 19, 2024
1 parent eeb9136 commit ea5de0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/pull-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/cache@v2
with:
path: .build/release/swiftlint
key: $-linting-swiftlint-$
- name: Build realm/SwiftLint
run: |
if [ -f ".build/release/swiftlint" ]; then
Expand All @@ -32,7 +29,7 @@ jobs:
- name: SwiftLint
run: |
swiftlint --version
swiftlint lint --strict --config .swiftlint.yml --quiet
swiftlint lint --config .swiftlint.yml --strict --quiet
env:
LINUX_SOURCEKIT_LIB_PATH: /usr/share/swift/usr/lib
Build:
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/push-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/cache@v2
with:
path: .build/release/swiftlint
key: $-linting-swiftlint-$
- name: Build realm/SwiftLint
run: |
if [ -f ".build/release/swiftlint" ]; then
Expand All @@ -30,6 +27,6 @@ jobs:
- name: SwiftLint
run: |
swiftlint --version
swiftlint lint --strict --config .swiftlint.yml --quiet
swiftlint lint --config .swiftlint.yml --strict --quiet
env:
LINUX_SOURCEKIT_LIB_PATH: /usr/share/swift/usr/lib

0 comments on commit ea5de0a

Please sign in to comment.