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
|
||||
+2
-1
@@ -1 +1,2 @@
|
||||
build
|
||||
build
|
||||
*.sublime-*
|
||||
-16
@@ -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
|
||||
@@ -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
@@ -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
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user