Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Continuous Integration

on:
push:
branches: [ "master" ]
# See docu here: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-including-and-excluding-branches
# it seems pretty similar to .gitignore
paths:
- '!**.md'
- '**'
pull_request:
paths:
- '!**.md'
- '**'

jobs:
# builds and tests c++ code
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install boost, gcc, clang
run: sudo apt-get install libboost1.83-dev libboost1.83-tools-dev clang gcc
- name: print versions
run: gcc --version && clang --version
- name: cat test
run: ls -al && cat run_tests.sh
- name: test gcc
run: ./run_tests.sh --toolset=gcc
- name: test clang
run: ./run_tests.sh --toolset=clang
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# visit_struct

[![Build Status](https://travis-ci.org/cbeck88/visit_struct.svg?branch=master)](http://travis-ci.org/cbeck88/visit_struct)
[![Appveyor status](https://ci.appveyor.com/api/projects/status/6ksqg7es938cttn2/branch/master?svg=true)](https://ci.appveyor.com/project/cbeck88/visit_struct)
[![Build Status](https://github.com/cbeck88/visit_struct/actions/workflows/ci.yml/badge.svg)](http://travis-ci.org/cbeck88/visit_struct)

[![Boost licensed](https://img.shields.io/badge/license-Boost-blue.svg)](./LICENSE)

A header-only library providing **structure visitors** for C++11 and C++14.
Expand Down