Skip to content

Commit be6645c

Browse files
authored
Merge pull request #4 from Mailbutler/master
Add GitHub Actions workflow to always perform unit tests
2 parents ac61fe8 + 8670360 commit be6645c

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Xcode - Build, Analyze and Test
2+
3+
on:
4+
push:
5+
branches: ["master"]
6+
pull_request:
7+
branches: ["master"]
8+
9+
jobs:
10+
build:
11+
name: Build, analyze and test default scheme using xcodebuild command
12+
runs-on: macos-latest
13+
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
- name: Build, Analyze and Test
18+
run: xcodebuild clean build analyze test -project ACActionCable.xcodeproj -scheme ACActionCable-Package -destination 'platform=macOS' | xcpretty && exit ${PIPESTATUS[0]}

ACActionCable.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
Pod::Spec.new do |spec|
1010
spec.name = 'ACActionCable'
11-
spec.version = '2.1.1'
11+
spec.version = '2.1.2'
1212
spec.license = { :type => 'MIT', :file => 'LICENSE' }
1313
spec.homepage = 'https://github.com/High5Apps/ACActionCable'
1414
spec.authors = { 'Julian Tigler' => '[email protected]', 'Fabian Jäger' => '[email protected]' }
1515
spec.summary = 'A well-tested, dependency-free Action Cable client for Rails 6'
16-
spec.source = { :git => 'https://github.com/High5Apps/ACActionCable.git', :tag => 'v2.1.1' }
16+
spec.source = { :git => 'https://github.com/High5Apps/ACActionCable.git', :tag => 'v2.1.2' }
1717
spec.swift_version = '5.1'
1818
spec.ios.deployment_target = '11.0'
1919
spec.osx.deployment_target = '10.13'

ACActionCable.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@
322322
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
323323
LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx";
324324
MACOSX_DEPLOYMENT_TARGET = 10.13;
325-
MARKETING_VERSION = 2.1.1;
325+
MARKETING_VERSION = 2.1.2;
326326
OTHER_CFLAGS = "$(inherited)";
327327
OTHER_LDFLAGS = "$(inherited)";
328328
OTHER_SWIFT_FLAGS = "$(inherited)";
@@ -352,7 +352,7 @@
352352
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
353353
LD_RUNPATH_SEARCH_PATHS = "$(inherited) $(TOOLCHAIN_DIR)/usr/lib/swift/macosx";
354354
MACOSX_DEPLOYMENT_TARGET = 10.13;
355-
MARKETING_VERSION = 2.1.1;
355+
MARKETING_VERSION = 2.1.2;
356356
OTHER_CFLAGS = "$(inherited)";
357357
OTHER_LDFLAGS = "$(inherited)";
358358
OTHER_SWIFT_FLAGS = "$(inherited)";

0 commit comments

Comments
 (0)