Rearrange test header and add comments #30
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
name: C/C++ CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set terminal environment | |
run: echo "TERM=xterm" >> $GITHUB_ENV | |
- name: dependencies | |
run: sudo apt install cmake libncurses5 libncursesw5 | |
- name: build | |
run: ./build.sh | |
- name: unit tests | |
run: ./build/test/testhip35 |