yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
06b8e6974
master
1name : "Copilot Setup Steps" 2 3on : 4workflow_dispatch : 5# Automatically run the setup steps when they are changed to allow for easy validation, and 6# allow manual testing through the repository's "Actions" tab 7pull_request : 8paths : 9- .github/workflows/copilot-setup-steps.yml 10 11jobs : 12copilot-setup-steps : 13runs-on : ubuntu-latest 14 15permissions : 16contents : read 17pull-requests : write 18checks : write 19 20steps : 21- uses : actions/checkout@v4 22with : 23submodules : "recursive" 24fetch-depth : "2" 25- uses : ./.github/actions/format-setup 26- name : setup environment 27run : | 28 sudo apt-get update 29 sudo apt-get install -y libx11-dev 30 cmake --preset default --fresh 31 cmake --workflow --preset debug