Fix: Aliens are now responsive positionned on axis Y #36
This file contains hidden or 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: Makefile CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Code Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install dependancies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential git make \ | |
| pkg-config cmake ninja-build gnome-desktop-testing libasound2-dev libpulse-dev \ | |
| libaudio-dev libfribidi-dev libjack-dev libsndio-dev libx11-dev libxext-dev \ | |
| libxrandr-dev libxcursor-dev libxfixes-dev libxi-dev libxss-dev libxtst-dev \ | |
| libxkbcommon-dev libdrm-dev libgbm-dev libgl1-mesa-dev libgles2-mesa-dev \ | |
| libegl1-mesa-dev libdbus-1-dev libibus-1.0-dev libudev-dev libpipewire-0.3-dev \ | |
| libwayland-dev libdecor-0-dev liburing-dev libfreetype6-dev libharfbuzz-dev \ | |
| libjpeg-dev libpng-dev libtiff-dev libwebp-dev libncurses5-dev libncursesw5-dev | |
| - name: Clone SDL dependencies | |
| run: | | |
| mkdir -p 3rdParty | |
| git clone --depth 1 https://github.com/libsdl-org/SDL.git 3rdParty/SDL | |
| git clone --depth 1 https://github.com/libsdl-org/SDL_image.git 3rdParty/SDL_image | |
| git clone --depth 1 https://github.com/libsdl-org/SDL_ttf.git 3rdParty/SDL_ttf | |
| - name: Build project | |
| run: make -j$(nproc) |