Skip to content

Commit 40c8292

Browse files
committed
updated for actions
1 parent 084f408 commit 40c8292

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[![Build Status](https://travis-ci.com/deftio/travis-ci-cpp-example.svg?branch=master)](https://travis-ci.com/deftio/travis-ci-cpp-example)
1+
[![Build Status](https://app.travis-ci.com/deftio/C-and-Cpp-Tests-with-CI-CD-Example.svg?token=Pc8RELtY2RwRuTT1tezA&branch=master)](https://app.travis-ci.com/deftio/C-and-Cpp-Tests-with-CI-CD-Example)
22
[![Coverage Status](https://coveralls.io/repos/github/deftio/travis-ci-cpp-example/badge.svg?branch=master)](https://coveralls.io/github/deftio/travis-ci-cpp-example?branch=master)
33
[![License](https://img.shields.io/badge/License-BSD%202--Clause-blue.svg)](https://opensource.org/licenses/BSD-2-Clause)
4-
[![Github Actions Ci](https://github.com/deftio/C-and-Cpp-Tests-with-CI-CD-Example/actions/workflows/ci.yml/badge.svg)]
4+
![Github Actions Ci](https://github.com/deftio/C-and-Cpp-Tests-with-CI-CD-Example/actions/workflows/ci.yml/badge.svg)
55

66
# Simple Example for C/C++ Testing with CI/CD
77

@@ -29,7 +29,7 @@ In this demo project there is a C library (could also be C++ etc). The library
2929
There are many different phases of testing. Here are a few areas but phrased as questions.
3030

3131
Common Testing "Questions" about a project:
32-
* Does it run as intended? (is it funcitonally correct, does it do what its supposed to do?)
32+
* Does it run as intended? (is it functionally correct / does it do what its supposed to do?)
3333
* Does it have side effects when running? (are resources tied up such as ports blocked, thread contention? Are other programs or services affected unintentionally?)
3434
* Are all the possible permutations of execution tested? (code coverage, Is every piece of code - every if-then statement etc tested?)
3535
* How much memory or resources are used? (is memmory efficiently used? Is memory freed correctly after use? When the program is complete does it leave things intact?)

test-library.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/*
2-
32
@main.c - simple test file example file for travis-ci example library
43
54
@copy Copyright (C) <2012> <M. A. Chatterjee>

0 commit comments

Comments
 (0)