Skip to content

scroll to pixel size update #6

scroll to pixel size update

scroll to pixel size update #6

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies (SDL2)
run: |
sudo apt update
sudo apt install -y libsdl2-dev
- name: Verify SDL2
run: |
sdl2-config --version
sdl2-config --cflags
sdl2-config --libs
- name: Build
run: |
make
- name: Clean
run: |
make clean