Display full name of interface if it fits to window #42
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: Linux | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install CMAKE | |
run: sudo apt install -y cmake | |
- name: Install dependencies | |
run: sudo apt install -y libssl-dev | |
- name: Check versions | |
run: | | |
gcc --version | |
cmake --version | |
- name: Build with CMAKE | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
make |