quiet checkouts

This commit is contained in:
Roy Crihfield 2024-08-03 21:10:19 -05:00
parent 02bc31afc2
commit 2e278ede55

View File

@ -18,7 +18,9 @@ jobs:
name: Run Beacon collector tests name: Run Beacon collector tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with:
progress: false
- uses: actions/setup-go@v4 - uses: actions/setup-go@v4
with: with:
go-version-file: 'go.mod' go-version-file: 'go.mod'
@ -37,12 +39,13 @@ jobs:
echo PATH="$PATH:$(pwd)" >> $GITHUB_ENV echo PATH="$PATH:$(pwd)" >> $GITHUB_ENV
- name: "Clone system-tests" - name: "Clone system-tests"
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
repository: cerc-io/system-tests repository: cerc-io/system-tests
ref: ${{ env.SYSTEM_TESTS_REF }} ref: ${{ env.SYSTEM_TESTS_REF }}
path: ./system-tests path: ./system-tests
token: ${{ secrets.CICD_REPO_TOKEN }} token: ${{ secrets.CICD_REPO_TOKEN }}
progress: false
- name: "Install pytest" - name: "Install pytest"
working-directory: ./system-tests working-directory: ./system-tests
run: pip3 install pytest run: pip3 install pytest
@ -72,7 +75,9 @@ jobs:
name: Run Blobscan scraper tests name: Run Blobscan scraper tests
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with:
progress: false
- uses: actions/setup-go@v4 - uses: actions/setup-go@v4
with: with:
go-version-file: 'go.mod' go-version-file: 'go.mod'