From e3083252bdad41ac1e2a03beee1491298117f659 Mon Sep 17 00:00:00 2001 From: Alex Spaeth Date: Thu, 23 May 2024 18:21:35 -0700 Subject: [PATCH] Try adding credentials to CI --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce1a2cb..809e717 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,7 @@ env: jobs: checks: name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }} + environment: testing runs-on: ${{ matrix.runs-on }} continue-on-error: true strategy: @@ -28,6 +29,10 @@ jobs: runs-on: [ubuntu-latest, macos-latest, windows-latest] steps: + - run: | + mkdir ~/.aws + echo ${{ secrets.AWS_CREDENTIALS }} > ~/.aws/credentials + - uses: actions/checkout@v4 with: fetch-depth: 0