Files
cexception/.github/workflows/main.yml
T
Mark VanderVoord 37673b7595 Update main.yml
2025-02-17 09:30:07 -05:00

34 lines
792 B
YAML

---
# Continuous Integration Workflow: Test case suite run + validation build check
name: CI
# Controls when the action will run.
# Triggers the workflow on push or pull request events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
# Job: Unit test suite
unit-tests:
name: "Unit Tests"
runs-on: ubuntu-latest
steps:
# Checks out repository under $GITHUB_WORKSPACE
- name: Checkout Latest Repo
uses: actions/checkout@v4
with:
submodules: recursive
# Install Ceedling
- name: Install Ceedling
run: |
sudo gem install ceedling
# Run Tests
- name: Run All Self Tests
run: |
ceedling clobber test:all