From afe3e8f6ef3be945be4c8193769bb2c71a4a24d7 Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Sat, 3 Aug 2024 21:10:19 -0500 Subject: [PATCH] quiet checkouts --- .gitea/workflows/test.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 059cf0c..b216e05 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -18,7 +18,9 @@ jobs: name: Run Beacon collector tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + with: + progress: false - uses: actions/setup-go@v4 with: go-version-file: 'go.mod' @@ -37,12 +39,13 @@ jobs: echo PATH="$PATH:$(pwd)" >> $GITHUB_ENV - name: "Clone system-tests" - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: cerc-io/system-tests ref: ${{ env.SYSTEM_TESTS_REF }} path: ./system-tests token: ${{ secrets.CICD_REPO_TOKEN }} + progress: false - name: "Install pytest" working-directory: ./system-tests run: pip3 install pytest @@ -72,7 +75,9 @@ jobs: name: Run Blobscan scraper tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + with: + progress: false - uses: actions/setup-go@v4 with: go-version-file: 'go.mod'