Skip to content

feat: started ewmh support #21

feat: started ewmh support

feat: started ewmh support #21

Workflow file for this run

name: C CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y xorg-dev libx11-dev libxft-dev libxinerama-dev git
- name: Clone and install tomlc99
run: |
git clone https://github.com/cktan/tomlc99.git
cd tomlc99
make
sudo make install
cd ..
rm -rf tomlc99
- name: Check tomlc99 install
run: |
echo '#include <toml.h>' | gcc -xc -c -o /dev/null - && echo "tomlc99 installed successfully"
- name: Build AtlasWM
run: make atlaswm
- name: Clean
run: make clean