diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..de53b21 --- /dev/null +++ b/.github/workflows/main.yml @@ -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 diff --git a/.gitignore b/.gitignore index c795b05..1cfa3c8 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -build \ No newline at end of file +build +*.sublime-* \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ac313a6..0000000 --- a/.travis.yml +++ /dev/null @@ -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 diff --git a/README.md b/README.md index 79affd0..eda2104 100644 --- a/README.md +++ b/README.md @@ -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.* diff --git a/docs/CException.md b/docs/CException.md index 93b57eb..3b371b8 100644 --- a/docs/CException.md +++ b/docs/CException.md @@ -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 diff --git a/lib/CException.h b/lib/CException.h index 78f2f94..be9e186 100644 --- a/lib/CException.h +++ b/lib/CException.h @@ -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: