Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

[CodeBuild] more dependency updates #271

[CodeBuild] more dependency updates

[CodeBuild] more dependency updates #271

Workflow file for this run

name: Run Unit Tests
on:
push:
branches-ignore:
- "main"
jobs:
run_unit_tests:
environment: AWS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Python & Poetry Environment
uses: ./.github/actions/prepare_poetry_env
- name: Run pytest
run: poetry run pytest
env: # Set the secret as an env variable
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY_SECRET }}
AWS_DEFAULT_REGION: ${{ secrets.AWS_REGION }}