Skip to content

Bump github.com/aws/aws-sdk-go-v2/credentials from 1.13.43 to 1.15.2 #4

Bump github.com/aws/aws-sdk-go-v2/credentials from 1.13.43 to 1.15.2

Bump github.com/aws/aws-sdk-go-v2/credentials from 1.13.43 to 1.15.2 #4

Workflow file for this run

name: test-contracts
on:
push:
pull_request:
types: [opened, reopened]
env:
FOUNDRY_PROFILE: ci
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
check:
name: Foundry Project
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install forge dependencies
run: forge install
working-directory: ./contracts
- name: Run tests
run: forge test -vvv
working-directory: ./contracts
- name: Run snapshot
run: forge snapshot
working-directory: ./contracts