forked from aws/aws-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 950 Bytes
/
run-bundle-test.yml
File metadata and controls
33 lines (30 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Run bundle test
on:
push:
branches-ignore:
- develop # the daily release reaches GitHub before PyPI, and these fail in that window
- master
pull_request:
branches-ignore: [ master ]
permissions:
contents: read
jobs:
test-bundle:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v6.0.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python scripts/ci/install
- name: Install additional dependencies
run: pip install virtualenv==16.3.0 setuptools-scm==3.3.3 # same as internal generate-bundle.ts
- name: Test the bundle
run: python scripts/ci/test-bundle