Skip to content

Use ASCII code in XTOP to clear the screen by default #52

Use ASCII code in XTOP to clear the screen by default

Use ASCII code in XTOP to clear the screen by default #52

Workflow file for this run

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