summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
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
+