Skip to content

Commit

Permalink
Merge pull request #1 from miyurud/master
Browse files Browse the repository at this point in the history
Add implementation related to Microsoft sheets connector
  • Loading branch information
daneshk authored Jul 1, 2020
2 parents 344e24a + 282d9f2 commit b401921
Show file tree
Hide file tree
Showing 18 changed files with 1,420 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Ballerina Build
uses: ballerina-platform/ballerina-action/@swan-lake-release
with:
args:
build -a -c --skip-tests
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Deployment

on:
release:
types: [published]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Ballerina Build
uses: ballerina-platform/ballerina-action/@swan-lake-release
with:
args:
build -a -c --skip-tests
- name: Ballerina Push
uses: ballerina-platform/ballerina-action/@swan-lake-release
with:
args:
push -a
env:
BALLERINA_CENTRAL_ACCESS_TOKEN: ${{ secrets.BALLERINA_CENTRAL_ACCESS_TOKEN }}
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright (c) 2020, WSO2 Inc. (http://wso2.com) All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

script:
- wget http://dist-dev.ballerina.io/downloads/swan-lake-preview1/ballerina-linux-installer-x64-swan-lake-preview1.deb
- sudo dpkg -i ballerina-linux-installer-x64-swan-lake-preview1.deb
- sudo apt-get install -f
- ballerina build -a -c --skip-tests
Loading

0 comments on commit b401921

Please sign in to comment.