This repository has no description
0

Configure Feed

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

๐Ÿ‘ฉโ€๐Ÿ’ปโ€ Build ahead of other checks that use the same rust build cache key

+19
+19
.github/workflows/check.yml
··· 5 5 push: { branches: [main] } 6 6 7 7 jobs: 8 + build: 9 + name: Build 10 + runs-on: ubuntu-latest 11 + steps: 12 + - uses: actions/checkout@v5 13 + - uses: actions-rs/toolchain@v1 14 + with: { toolchain: stable } 15 + - uses: Swatinem/rust-cache@v2 16 + with: 17 + shared-key: build 18 + - uses: actions-rs/cargo@v1 19 + with: { command: build, args: --workspace } 20 + 8 21 benchmark: 22 + needs: build 9 23 name: Benchmark 10 24 runs-on: ubuntu-latest 11 25 ··· 59 73 ### Resulting video 60 74 61 75 ${{ steps.video.outputs.artifact-url }} 76 + 62 77 check: 63 78 name: Lint 64 79 runs-on: ubuntu-latest ··· 77 92 with: { command: check, args: --no-default-features --features web } 78 93 79 94 test: 95 + needs: build 80 96 name: Test 81 97 runs-on: ubuntu-latest 82 98 steps: ··· 93 109 94 110 video-baseline-update: 95 111 if: github.event_name == 'push' 112 + needs: build 96 113 name: Update baseline test video 97 114 runs-on: ubuntu-latest 98 115 concurrency: ··· 153 170 with: 154 171 commit_message: โœ… Update video test baseline 155 172 file_pattern: examples/schedule-hell/baseline.mp4 173 + 156 174 video: 157 175 if: github.event_name == 'pull_request' 176 + needs: build 158 177 name: Video 159 178 runs-on: ubuntu-latest 160 179 permissions: