mirror of
https://github.com/throwtheswitch/cexception.git
synced 2026-06-05 21:24:36 +00:00
Bump Version.
Switch to running self-tests on github actions. Bump dates.
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
---
|
||||
# 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:
|
||||
# Install Ceedling
|
||||
- name: Install Ceedling
|
||||
run: |
|
||||
sudo gem install ceedling
|
||||
|
||||
# Run Tests
|
||||
- name: Run All Self Tests
|
||||
run: |
|
||||
ceedling clobber test:all
|
||||
Reference in New Issue
Block a user