From 84bd59f488d40d5d8111a0349b6aada57d6df2b2 Mon Sep 17 00:00:00 2001 From: phoenix Date: Fri, 7 Aug 2026 11:06:09 -0400 Subject: [PATCH] ci: Trying out fake s3 --- .github/workflows/pr.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 91825bd..267be48 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -27,6 +27,16 @@ jobs: --health-timeout 5s --health-retries 5 + fake-s3: + image: lphoward/fake-s3:latest + ports: + - 4569:4569 + options: >- + --health-cmd "curl -f http://localhost:4569 || exit 1" + --health-interval 10s + --health-timeout 5s + --health-retries 5 + steps: - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 @@ -45,16 +55,7 @@ jobs: docker ps -a echo "Docker environment check complete." - - - name: Setup AWS CLI - uses: aws-actions/configure-aws-credentials@v4 - with: - aws-access-key-id: ${{ secrets.GARAGE_KEY_ID }} - aws-secret-access-key: ${{ secrets.GARAGE_SECRET }} - aws-region: ${{ secrets.GARAGE_REGION }} - mask-aws-account-id: false - - - name: Setup LocalStack S3 + - name: Setup S3 run: | # Install AWS CLI sudo apt update