Merge pull request #63 from kosma/workflow

Replace Travis with Github Actions
This commit is contained in:
Kosma Moczek 2022-06-02 22:27:31 +02:00 committed by GitHub
commit 6b1a15aa29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 11 deletions

13
.github/workflows/c-cpp.yml vendored Normal file
View File

@ -0,0 +1,13 @@
name: C/C++ CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get install -y clang-tools check
- name: make
run: make

View File

@ -1,10 +0,0 @@
language: c
compiler:
- gcc
- clang
install: sudo apt-get install check
script: make test
notifications:
email:
on_success: change
on_failure: change

View File

@ -1,6 +1,7 @@
# minmea, a lightweight GPS NMEA 0183 parser library
[![Build Status](https://travis-ci.org/kosma/minmea.svg?branch=master)](https://travis-ci.org/kosma/minmea)
[![C/C++
CI](https://github.com/kosma/minmea/actions/workflows/c-cpp.yml/badge.svg)](https://github.com/kosma/minmea/actions/workflows/c-cpp.yml)
Minmea is a minimalistic GPS parser library written in pure C intended for
resource-constrained platforms, especially microcontrollers and other embedded