From 90d29d64e89bca571d44bbb2d1cd3f353fbb234a Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Thu, 2 Dec 2021 15:40:38 +0100 Subject: [PATCH] [ci skip] Ignore updates to *.md for testing --- .github/workflows/test.yml | 4 +++- .travis.yml | 15 --------------- 2 files changed, 3 insertions(+), 16 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4477f40..eefe7d4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,7 +3,9 @@ name: Unit Tests on: push: branches: - - 'master' + - "master" + paths-ignore: + - "*.md" jobs: name: Run tests diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 42ec050..0000000 --- a/.travis.yml +++ /dev/null @@ -1,15 +0,0 @@ -language: objective-c -osx_image: xcode12.2 -xcode_workspace: TunnelKit.xcworkspace -xcode_scheme: TunnelKit-iOS -xcode_destination: platform=iOS Simulator,OS=14.2,name=iPhone 11 Pro Max -cache: - bundler: true - cocoapods: true -branches: - only: - - master -install: - - bundle install --jobs=3 --deployment --path=${BUNDLE_PATH:-vendor/bundle} - - bundle exec pod repo update - - travis_wait 40 bundle exec pod install