Benchmarking: Calculate weights for 3ade16addd2ef41a7a4968e096bfba0faa6405fe #379
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 |