Skip to content

Commit

Permalink
Merge pull request #2 from deskpro/feat/add-github-workflow
Browse files Browse the repository at this point in the history
Add github workflows
  • Loading branch information
qsd-faris authored Jan 8, 2024
2 parents 5a477c3 + 91214ee commit 5267201
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build & Test

on:
workflow_dispatch:
push:
branches:
- main
- develop
pull_request:
types:
- opened
- synchronize

jobs:
build_and_test:
runs-on: macos-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Build
run: swift build -v

- name: Run tests
run: swift test -v
2 changes: 0 additions & 2 deletions Sources/messenger-sdk-ios/messenger_sdk_ios.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import DeskproFramework

struct messenger_sdk_ios {
private(set) var text = "Hello, World!"

Expand Down

0 comments on commit 5267201

Please sign in to comment.