Pass boto3_session #114
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test mojap suite of package dependancies | |
on: pull_request | |
env: | |
REPO_NAME: ${{ github.event.repository.name }} | |
ORG_REPO: ${{ github.repository }} | |
jobs: | |
build: | |
name: test mojap dependencies | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: check changes for conflicts with other mojap package dependencies | |
uses: moj-analytical-services/actions-mojap-package-depends@v1 | |
with: | |
org-repo: ${{ env.ORG_REPO }} | |
repo: ${{ env.REPO_NAME }} |