Bump Version.

Switch to running self-tests on github actions.
Bump dates.
This commit is contained in:
Mark VanderVoord
2021-01-29 09:03:48 -05:00
parent 28c721419f
commit e2eb9655a6
6 changed files with 32 additions and 20 deletions
+27
View File
@@ -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
+2 -1
View File
@@ -1 +1,2 @@
build
build
*.sublime-*
-16
View File
@@ -1,16 +0,0 @@
sudo: required
language: ruby c
os:
- linux
rvm:
- "2.3"
- "2.4"
- "2.6"
install:
- gem install ceedling
script:
- ceedling clobber test:all
+1 -1
View File
@@ -241,7 +241,7 @@ License
=======
*This software is licensed under the MIT License:
Copyright (c) 2007-2019 Mark VanderVoord*
Copyright (c) 2007-2021 Mark VanderVoord*
*Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.*
+1 -1
View File
@@ -311,7 +311,7 @@ LICENSE
This software is licensed under the MIT License
Copyright (c) 2007-2020 Mark VanderVoord
Copyright (c) 2007-2021 Mark VanderVoord
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
+1 -1
View File
@@ -11,7 +11,7 @@ extern "C"
#define CEXCEPTION_VERSION_MAJOR 1
#define CEXCEPTION_VERSION_MINOR 3
#define CEXCEPTION_VERSION_BUILD 2
#define CEXCEPTION_VERSION_BUILD 3
#define CEXCEPTION_VERSION ((CEXCEPTION_VERSION_MAJOR << 16) | (CEXCEPTION_VERSION_MINOR << 8) | CEXCEPTION_VERSION_BUILD)
//To Use CException, you have a number of options: