Skip to content

Commit

Permalink
Use C++14
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Dec 8, 2020
1 parent d8e46ab commit e4c92fb
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/.gitignore
@@ -0,0 +1 @@
*.html
24 changes: 24 additions & 0 deletions .github/workflows/check.yaml
@@ -0,0 +1,24 @@
on:
push:
pull_request:

name: check

jobs:
check:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2

- name: Install Qt
uses: jurplel/install-qt-action@v2

- name: qmake
run: qmake

- name: make
run: make --silent

- name: run
run: ./travis_qmake_gcc_cpp14

3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -5,6 +5,8 @@ Branch |[![Travis CI logo](TravisCI.png)](https://travis-ci.org)
`master` |[![Build Status](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp14.svg?branch=master)](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp14)
`develop`|[![Build Status](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp14.svg?branch=develop)](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp14)

![GitHub Actions](https://github.com/richelbilderbeek/travis_qmake_gcc_cpp14/workflows/check/badge.svg?branch=master)

This GitHub is part of:

* [the Travis C++ Tutorial](https://github.com/richelbilderbeek/travis_cpp_tutorial)
Expand All @@ -21,6 +23,7 @@ The goal of this project is to have a clean Travis CI build, with specs:
More complex builds:

* [![Build Status](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp17.svg?branch=master)](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp17) Use C++17: [travis_qmake_gcc_cpp17](https://www.github.com/richelbilderbeek/travis_qmake_gcc_cpp17)
* [![Build Status](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp20.svg?branch=master)](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp20) Use C++20: [travis_qmake_gcc_cpp20](https://www.github.com/richelbilderbeek/travis_qmake_gcc_cpp20)
* [![Build Status](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp14_bpp.svg?branch=master)](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp14_bpp) Add `Bio++`: [travis_qmake_gcc_cpp14_bpp](https://www.github.com/richelbilderbeek/travis_qmake_gcc_cpp14_bpp)
* [![Build Status](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp14_boost.svg?branch=master)](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp14_boost) Add `Boost`: [travis_qmake_gcc_cpp14_boost](https://www.github.com/richelbilderbeek/travis_qmake_gcc_cpp14_boost)
* [![Build Status](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp14_boost_graph.svg?branch=master)](https://travis-ci.org/richelbilderbeek/travis_qmake_gcc_cpp14_boost_graph) Add `Boost.Graph`: [travis_qmake_gcc_cpp14_boost_graph](https://www.github.com/richelbilderbeek/travis_qmake_gcc_cpp14_boost_graph)
Expand Down

0 comments on commit e4c92fb

Please sign in to comment.