diff --git a/.github/workflows/JOB_generate_documentation.yml b/.github/workflows/JOB_generate_documentation.yml index 0c456f3c0..7f9bb3195 100644 --- a/.github/workflows/JOB_generate_documentation.yml +++ b/.github/workflows/JOB_generate_documentation.yml @@ -9,7 +9,7 @@ on: permissions: id-token: write # This is required for requesting the JWT - contents: read # This is required for actions/checkout + contents: read # This is required for actions/checkout env: AWS_REGION: eu-west-1 @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v4 with: @@ -59,7 +59,5 @@ jobs: role-session-name: ${{ env.AWS_SESSION_NAME }} aws-region: ${{ env.AWS_REGION }} - - name: Upload docs to S3 run: aws s3 cp docs/ s3://darwin-py-sdk.v7labs.com/ --recursive - diff --git a/.github/workflows/JOB_tests.yml b/.github/workflows/JOB_tests.yml index d98d52137..099fe40a5 100644 --- a/.github/workflows/JOB_tests.yml +++ b/.github/workflows/JOB_tests.yml @@ -12,6 +12,16 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ["3.8", "3.9", "3.10", "3.11"] + exclude: + - os: macos-latest + python-version: "3.8" + - os: macos-latest + python-version: "3.9" + include: + - os: macos-13 + python-version: "3.8" + - os: macos-13 + python-version: "3.9" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4