-
Notifications
You must be signed in to change notification settings - Fork 27
46 lines (39 loc) · 1.16 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: CI
on:
push:
branches:
- master
- 2201.[0-9]+.x
repository_dispatch:
types:
check_connector_for_breaking_changes
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup Ballerina Environment
- name: Set Up Ballerina
uses: ballerina-platform/[email protected]
with:
version: latest
# Build Ballerina Project
- name: Ballerina Build
run: bal pack ./ballerina
env:
JAVA_HOME: /usr/lib/jvm/default-jvm
# Build Module Examples
- name: Ballerina Examples Build
run: chmod +x ./examples/build.sh && ./examples/build.sh build
env:
JAVA_HOME: /usr/lib/jvm/default-jvm
# Test Ballerina Project
- name: Ballerina Test
working-directory: ./ballerina
run: bal test --test-report --code-coverage --coverage-format=xml
env:
SLACK_TOKEN: ${{ secrets.SLACK_TOKEN }}
SLACK_USERNAME: ${{ secrets.SLACK_USERNAME }}
JAVA_HOME: /usr/lib/jvm/default-jvm
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3