From 183a058853382193692608759df45f6d32849077 Mon Sep 17 00:00:00 2001 From: Maxime Desroches Date: Wed, 30 Oct 2024 19:57:27 -0700 Subject: [PATCH] ci: use setup with retry for static analysis (#33898) * docker * setup * now --- .github/workflows/selfdrive_tests.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/selfdrive_tests.yaml b/.github/workflows/selfdrive_tests.yaml index 593fff8f0..7e122b57d 100644 --- a/.github/workflows/selfdrive_tests.yaml +++ b/.github/workflows/selfdrive_tests.yaml @@ -146,11 +146,12 @@ jobs: PYTHONWARNINGS: default steps: - uses: actions/checkout@v4 - - name: Setup - run: tools/op.sh setup + with: + submodules: true + - uses: ./.github/workflows/setup-with-retry - name: Static analysis timeout-minutes: 1 - run: tools/op.sh lint + run: ${{ env.RUN }} "scripts/lint/lint.sh" unit_tests: name: unit tests