feat: update rollup-boost params #585
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: CI | |
on: | |
pull_request: | |
concurrency: | |
group: "tests-${{ github.head_ref }}" | |
cancel-in-progress: true | |
jobs: | |
run_with_args: | |
strategy: | |
matrix: | |
file_name: | |
[ | |
"./network_params.yaml" | |
] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install mise | |
uses: jdx/mise-action@v2 | |
- name: Run Starlark | |
run: kurtosis run ${{ github.workspace }} --args-file ${{ matrix.file_name }} --verbosity detailed | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install mise | |
uses: jdx/mise-action@v2 | |
- name: Kurtosis Lint | |
run: kurtosis lint ${{ github.workspace }} | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install mise | |
uses: jdx/mise-action@v2 | |
- name: Run kurtosis-test tests | |
run: kurtosis-test . | |