bump version in CMakeLists.txt to 0.7 to make new release. #68
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: build dist | |
on: | |
push: | |
pull_request: | |
jobs: | |
linux-build: | |
name: build on linux | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: apt update | |
run: | | |
sudo apt-get update | |
- name: apt install | |
run: | | |
echo y | sudo apt-get install doxygen | |
- name: run tests | |
run: clang cmidi2_test.c -o cmidi2_test && ./cmidi2_test |