This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ‘ฉโ€๐Ÿ’ปโ€ Set up concurrency groups for CI jobs

+13
+5
.github/workflows/check.yml
··· 8 8 benchmark: 9 9 name: Benchmark 10 10 runs-on: ubuntu-latest 11 + 12 + concurrency: 13 + group: checks-${{ github.ref }} 14 + cancel-in-progress: true 15 + 11 16 steps: 12 17 - uses: actions/checkout@v5 13 18 - name: Install FFMpeg
+4
.github/workflows/demo.yml
··· 5 5 permissions: 6 6 contents: write 7 7 8 + concurrency: 9 + group: demo-deploy 10 + cancel-in-progress: true 11 + 8 12 jobs: 9 13 deploy: 10 14 name: Deploy
+4
.github/workflows/docs.yml
··· 7 7 permissions: 8 8 contents: write 9 9 10 + concurrency: 11 + group: deploy-docs 12 + cancel-in-progress: true 13 + 10 14 jobs: 11 15 deploy: 12 16 name: Deploy