Benchmarking: Calculate weights for e13ff0ab597ba667b8a7bb308caac4201d09197f #279
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checks | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: Check lint | |
runs-on: [self-hosted, builder] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: target | |
key: ${{ runner.os }}-${{ github.ref }}-target-cache | |
- run: just check | |
tests: | |
name: Check project | |
runs-on: [self-hosted, builder] | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: target | |
key: ${{ runner.os }}-${{ github.ref }}-target-cache | |
- run: just test |