Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
remove debug method (#1)
Browse files Browse the repository at this point in the history
* remove debug method

* add lint workflow

* add workflow dispach for docs publishing
  • Loading branch information
skyman503 authored May 26, 2023
1 parent 5a38426 commit b1a6bf5
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Run lint & tests
on: [push]

jobs:
lint:
runs-on: macos-12
steps:
- uses: actions/checkout@v3

- name: Install deps
run: brew install swift-format xcbeautify

- name: Run formatter
run: swift-format format -i -r ./JellyfishClientSdk/Sources/**/*.swift --configuration swift-format-config.json

- name: Run lint
run: swift-format lint -r ./JellyfishClientSdk/Sources/**/*.swift --configuration swift-format-config.json
1 change: 1 addition & 0 deletions .github/workflows/publish_docs.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Deploy Docs
on:
workflow_dispatch:
push:
tags:
- "*"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,4 @@ public struct JellyfishClientSdk {

public init() {
}

public func hello() {
print("SIEMA ENIU")
}
}

0 comments on commit b1a6bf5

Please sign in to comment.