yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Yong HeDisable "Copilot Setup Steps" on "push". (#8129)06b8e6974

master
803 B31 linesraw
1name: "Copilot Setup Steps"
2
3on:
4  workflow_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
7  pull_request:
8    paths:
9      - .github/workflows/copilot-setup-steps.yml
10
11jobs:
12  copilot-setup-steps:
13    runs-on: ubuntu-latest
14
15    permissions:
16      contents: read
17      pull-requests: write
18      checks: write
19
20    steps:
21      - uses: actions/checkout@v4
22        with:
23          submodules: "recursive"
24          fetch-depth: "2"
25      - uses: ./.github/actions/format-setup
26      - name: setup environment
27        run: |
28          sudo apt-get update
29          sudo apt-get install -y libx11-dev
30          cmake --preset default --fresh
31          cmake --workflow --preset debug