File: frameworks.yml

package info (click to toggle)
python-bytecode 0.16.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 780 kB
  • sloc: python: 8,300; makefile: 169; sh: 40
file content (42 lines) | stat: -rw-r--r-- 982 bytes parent folder | download | duplicates (2)
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
34
35
36
37
38
39
40
41
42
name: Frameworks tests

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main
    paths:
      - .github/workflows/cis.yml
      - "src/**"
      - "tests/frameworks/*"
      - pyproject.toml
      - tox.ini

jobs:
  boto3:
    name: boto3 with Python ${{ matrix.python-version }}
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0

      - name: Set up Python
        uses: actions/setup-python@v5
        with:
          python-version: ${{ matrix.python-version }}-dev

      - name: Setup
        run: bash scripts/frameworks/boto3/setup.sh /tmp/boto3 ${{ matrix.python-version }}

      - name: Run
        env:
          PYTHONPATH: ${{ github.workspace }}/tests/frameworks/
        run: bash scripts/frameworks/boto3/run.sh /tmp/boto3 ${{ matrix.python-version }}