This repository has no description
0

Configure Feed

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

👷 Upload resulting video from perf check

+12
+12
.github/workflows/check.yml
··· 24 24 with: { toolchain: stable } 25 25 - uses: extractions/setup-just@v1 26 26 - run: just timings 27 + - id: video 28 + uses: actions/upload-artifact 29 + with: 30 + name: output-video 31 + path: out.mp4 32 + if-no-files-found: error 33 + compression-level: 0 34 + overwrite: yes 27 35 - id: results_csv 28 36 uses: juliangruber/read-file-action@v1 29 37 with: { path: ./results.csv } ··· 43 51 ### Performance Timings 44 52 45 53 ${{ steps.results_table.outputs.markdown-table }} 54 + 55 + ### Resulting video 56 + 57 + ${{ steps.video.outputs.artifact-url }} 46 58 check: 47 59 runs-on: ubuntu-latest 48 60 steps: