|
4 | 4 |
|
5 | 5 | #################### Unittests #################### |
6 | 6 | unittest: |
7 | | - runs-on: ubuntu-latest |
| 7 | + runs-on: blacksmith-4vcpu-ubuntu-2204 |
8 | 8 | strategy: |
9 | 9 | matrix: |
10 | 10 | python-version: [3.8,3.9,"3.10","3.12"] |
|
13 | 13 | uses: actions/checkout@v4 |
14 | 14 | - name: Set up Python ${{ matrix.python-version }} |
15 | 15 | id: python |
16 | | - uses: actions/setup-python@v4 |
| 16 | + uses: useblacksmith/setup-python@v6 |
17 | 17 | with: |
18 | 18 | python-version: ${{ matrix.python-version }} |
19 | 19 | - name: Install dependencies |
|
23 | 23 | #################### Integration tests #################### |
24 | 24 | integration: |
25 | 25 | needs: [unittest] |
26 | | - runs-on: ubuntu-latest |
| 26 | + runs-on: blacksmith-4vcpu-ubuntu-2204 |
27 | 27 | strategy: |
28 | 28 | matrix: |
29 | 29 | python-version: [3.8,3.9,"3.10","3.12"] |
|
34 | 34 | run: docker build -t rabbitmq:tls . |
35 | 35 | - name: Set up Python ${{ matrix.python-version }} |
36 | 36 | id: python |
37 | | - uses: actions/setup-python@v4 |
| 37 | + uses: useblacksmith/setup-python@v6 |
38 | 38 | with: |
39 | 39 | python-version: ${{ matrix.python-version }} |
40 | 40 | - name: Install dependencies |
|
50 | 50 | #################### Linters and checkers #################### |
51 | 51 | lint: |
52 | 52 | needs: [unittest, integration] |
53 | | - runs-on: ubuntu-latest |
| 53 | + runs-on: blacksmith-4vcpu-ubuntu-2204 |
54 | 54 | strategy: |
55 | 55 | matrix: |
56 | 56 | python-version: [3.8] |
|
59 | 59 | uses: actions/checkout@v4 |
60 | 60 | - name: Set up Python ${{ matrix.python-version }} |
61 | 61 | id: python |
62 | | - uses: actions/setup-python@v4 |
| 62 | + uses: useblacksmith/setup-python@v6 |
63 | 63 | with: |
64 | 64 | python-version: ${{ matrix.python-version }} |
65 | 65 | - name: Install dependencies |
|
0 commit comments