-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from njoy/fix/map
Updated so now we compose a hana::map instead of inherit from it.
- Loading branch information
Showing
11 changed files
with
216 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# GitHub workflow to enable continuous integratoin | ||
name: Continuous Integration | ||
|
||
# This workflow is triggered on pushes and pull requests to the repository. | ||
on: | ||
push: | ||
branches: '**' | ||
pull_request: | ||
branches: 'master' | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{matrix.os}} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-18.04, macos-10.15 ] | ||
cxx: [ g++-9, clang++ ] | ||
build_type: [ Debug, Release ] | ||
|
||
steps: | ||
- name: which CXX | ||
run: | | ||
which ${{matrix.cxx}} | ||
${{matrix.cxx}} --version | ||
- uses: actions/checkout@v2 | ||
- name: mkdir bin | ||
run: mkdir bin | ||
- name: cmake | ||
run: cmake -D CMAKE_CXX_COMPILER=`which ${{matrix.cxx}}` -D CMAKE_BUILD_TYPE=${{matrix.build_type}} .. | ||
working-directory: ./bin | ||
- name: make | ||
run: make | ||
working-directory: ./bin | ||
- name: ctest | ||
run: ctest -j2 | ||
working-directory: ./bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.