Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: ci
on: [push, pull_request]

on:
pull_request:
push:
branches: [main]

permissions:
contents: read
Expand Down Expand Up @@ -43,9 +47,10 @@ jobs:
- macos-latest
- windows-latest
rust:
- "1.88"
- "1.89"
- "1.90"
- "1.91.1"
- "1.92"
- "1.93"
- "1.94"
- stable
- beta
- nightly
Expand Down Expand Up @@ -149,13 +154,15 @@ jobs:

- name: Configure AWS credentials
if: github.repository == 'demosdemon/git-remote-codecommit'
uses: aws-actions/configure-aws-credentials@v4.0.2
continue-on-error: true
uses: aws-actions/configure-aws-credentials@v6.0.0
env:
RUST_BACKTRACE: 1
AWS_REGION: us-west-2
with:
role-to-assume: arn:aws:iam::339712996426:role/github-git-remote-codecommit
aws-region: ${{ env.AWS_REGION }}
disable-retry: true

- name: Run Rust tests with coverage
env:
Expand Down Expand Up @@ -248,7 +255,7 @@ jobs:
fetch-depth: 0 # need the history in order to push to CodeCommit

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4.0.2
uses: aws-actions/configure-aws-credentials@v6.0.0
with:
role-to-assume: arn:aws:iam::339712996426:role/github-git-remote-codecommit
aws-region: ${{ env.AWS_REGION }}
Expand Down
Loading
Loading