Skip to content

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

Use ASCII code in XTOP to clear the screen by default

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

Workflow file for this run

name: MacOS
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install CMake
run: brew install cmake
- name: Install dependencies
run: brew install openssl
- name: Check versions
run: |
gcc --version
cmake --version
- name: Build with CMake
run: |
mkdir build
cd build
cmake ..
make