Proposal for #1588 #1368
Workflow file for this run
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: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
build: | |
name: compile test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: install dependencies | |
run: sudo apt-get install tcl tcl-dev openssl libssl-dev | |
- name: configure | |
run: ./configure | |
- name: make config | |
run: make config | |
- name: make | |
run: make | |
- name: make install | |
run: make install |