summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2019-12-27 20:29:25 +0700
committerGitHub <[email protected]>2019-12-27 20:29:25 +0700
commita4be3a3227861d40c9179cde209e16b52ea2c456 (patch)
tree125a56592ccb7b8ecf12bd3c054f2c7f36584d88 /.github/workflows
parent81592feca53d5c0d2ea191eddc07ac758627e547 (diff)
Update build.yml
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml15
1 files changed, 12 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index cb1930e80..ccb39f7d2 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -7,13 +7,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- - name: Python
+ - name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.5
- - name: Node.js
+ - name: Setup Node.js
uses: actions/[email protected]
- - name: Toolchains
+ - name: Setup Ruby
+ uses: actions/[email protected]
+ - name: Install Toolchains
run: |
# Install XPM
npm install --global xpm
@@ -29,3 +31,10 @@ jobs:
uses: actions/checkout@v1
with:
submodules: true
+ - name: Unit Tests
+ run: |
+ # Install Ceedling
+ gem install ceedling
+ cd test
+ ceedling test:all
+