Skip to content

Commit

Permalink
some defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
anakin87 committed Mar 12, 2024
1 parent ea06da2 commit 9b338af
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/CI_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ on:
branches:
- nightly

permissions:
id-token: write
contents: read

env:
PYTHONUNBUFFERED: "1"
FORCE_COLOR: "1"
AWS_REGION: us-east-1

jobs:
run:
name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
Expand All @@ -35,6 +44,12 @@ jobs:
- name: Install Hatch
run: pip install --upgrade hatch

- name: AWS authentication
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502
with:
aws-region: ${{ env.AWS_REGION }}
role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }}

- name: Run tests
run: |
for d in integrations/* ; do
Expand Down

0 comments on commit 9b338af

Please sign in to comment.