C++/JS CI test run #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C++/JS CI test run | |
on: | |
push: | |
branches: [ $default-branch develop ] | |
pull_request: | |
branches: [ $default-branch develop ] | |
workflow_dispatch: | |
jobs: | |
Makefile-test-run-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Triggered by \"${{ github.event_name }}\", runner OS \"${{ runner.os }}\"." | |
- name: Check out \"${{ github.repository }}\", branch \"${{ github.ref }}\." | |
uses: actions/checkout@v3 | |
- name: Check if CLI binary compiles | |
run: make binary | |
- name: Check if examples compile | |
run: make examples | |
- name: Run tests | |
run: make test | |
- run: echo "Job status ${{ job.status }}." |