Skip to content

Commit

Permalink
Merge pull request #6 from peelonet/github-workflows
Browse files Browse the repository at this point in the history
Add GitHub workflows configuration
  • Loading branch information
RauliL authored Sep 4, 2020
2 parents 42c2903 + 767d80d commit 0c0d19b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build

on: [push]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Build
uses: ashutoshvarma/action-cmake-build@master
with:
build-dir: ${{ runner.workspace }}/build
build-type: Release
run-test: true
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# peelo-unicode

[![travis][travis-image]][travis-url]
![Build](https://github.com/peelonet/peelo-unicode/workflows/Build/badge.svg)

Collection of various Unicode related utility functions for C++17.

[Doxygen generated API documentation.][API]

[API]: https://peelonet.github.io/peelo-unicode/index.html
[travis-image]: https://travis-ci.com/peelonet/peelo-unicode.svg?branch=master
[travis-url]: https://travis-ci.com/peelonet/peelo-unicode
6 changes: 0 additions & 6 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@ FOREACH(TEST_FILENAME ${TEST_SOURCES})
cxx_std_17
)

TARGET_COMPILE_OPTIONS(
${TEST_NAME}
PRIVATE
-Wall -Werror
)

TARGET_LINK_LIBRARIES(
${TEST_NAME}
PeeloUnicode
Expand Down

0 comments on commit 0c0d19b

Please sign in to comment.