fix: prefund container suffixes for k8s #1585
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_starlark: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/docker-login | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Setup Kurtosis | |
uses: ./.github/actions/kurtosis-install | |
- name: Run Starlark | |
run: | | |
kurtosis run ${{ github.workspace }} --args-file network_params.yaml | |
run_with_args: | |
strategy: | |
matrix: | |
file_name: | |
[ | |
"./.github/tests/mev.yaml", | |
"./.github/tests/mev-mock.yaml", | |
"./.github/tests/mix-with-tools.yaml", | |
"./.github/tests/mix-persistence.yaml", | |
"./.github/tests/mix-public.yaml", | |
"./.github/tests/minimal.yaml", | |
"./network_params.yaml" | |
] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/docker-login | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Setup Kurtosis | |
uses: ./.github/actions/kurtosis-install | |
- name: Run Starlark | |
run: | | |
kurtosis run ${{ github.workspace }} --args-file ${{ matrix.file_name }} | |
lint: | |
runs-on: self-hosted-ghr-size-s-x64 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Kurtosis | |
uses: ./.github/actions/kurtosis-install | |
- name: Kurtosis Lint | |
run: kurtosis lint ${{ github.workspace }} | |
assertoor: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/docker-login | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Kurtosis Assertoor GitHub Action | |
uses: ethpandaops/kurtosis-assertoor-github-action@v1 | |
with: | |
kurtosis_version: "1.3.1" | |
ethereum_package_url: "." | |
ethereum_package_branch: "" | |
ethereum_package_args: .github/tests/mix-assert.yaml |