Show More
@@ -7,11 +7,11 b' jobs:' | |||
|
7 | 7 | runs-on: ubuntu-latest |
|
8 | 8 | |
|
9 | 9 | steps: |
|
10 |
- uses: actions/checkout@v |
|
|
11 |
- name: Set up Python |
|
|
12 |
uses: actions/setup-python@v |
|
|
10 | - uses: actions/checkout@v3 | |
|
11 | - name: Set up Python | |
|
12 | uses: actions/setup-python@v4 | |
|
13 | 13 | with: |
|
14 |
python-version: 3. |
|
|
14 | python-version: 3.x | |
|
15 | 15 | - name: Install Graphviz |
|
16 | 16 | run: | |
|
17 | 17 | sudo apt-get update |
@@ -21,9 +21,9 b' jobs:' | |||
|
21 | 21 | python-version: "3.9" |
|
22 | 22 | |
|
23 | 23 | steps: |
|
24 |
- uses: actions/checkout@v |
|
|
24 | - uses: actions/checkout@v3 | |
|
25 | 25 | - name: Set up Python ${{ matrix.python-version }} |
|
26 |
uses: actions/setup-python@v |
|
|
26 | uses: actions/setup-python@v4 | |
|
27 | 27 | with: |
|
28 | 28 | python-version: ${{ matrix.python-version }} |
|
29 | 29 | - name: Update Python installer |
@@ -15,9 +15,9 b' jobs:' | |||
|
15 | 15 | python-version: [3.8] |
|
16 | 16 | |
|
17 | 17 | steps: |
|
18 |
- uses: actions/checkout@v |
|
|
18 | - uses: actions/checkout@v3 | |
|
19 | 19 | - name: Set up Python ${{ matrix.python-version }} |
|
20 |
uses: actions/setup-python@v |
|
|
20 | uses: actions/setup-python@v4 | |
|
21 | 21 | with: |
|
22 | 22 | python-version: ${{ matrix.python-version }} |
|
23 | 23 | - name: Install dependencies |
@@ -14,18 +14,14 b' jobs:' | |||
|
14 | 14 | |
|
15 | 15 | runs-on: ubuntu-latest |
|
16 | 16 | timeout-minutes: 5 |
|
17 | strategy: | |
|
18 | matrix: | |
|
19 | python-version: [3.8] | |
|
20 | ||
|
21 | 17 | steps: |
|
22 |
- uses: actions/checkout@v |
|
|
18 | - uses: actions/checkout@v3 | |
|
23 | 19 | with: |
|
24 | 20 | fetch-depth: 0 |
|
25 |
- name: Set up Python |
|
|
26 |
uses: actions/setup-python@v |
|
|
21 | - name: Set up Python | |
|
22 | uses: actions/setup-python@v4 | |
|
27 | 23 | with: |
|
28 |
python-version: |
|
|
24 | python-version: 3.x | |
|
29 | 25 | - name: Install dependencies |
|
30 | 26 | run: | |
|
31 | 27 | python -m pip install --upgrade pip |
@@ -49,9 +49,9 b' jobs:' | |||
|
49 | 49 | deps: test |
|
50 | 50 | |
|
51 | 51 | steps: |
|
52 |
- uses: actions/checkout@v |
|
|
52 | - uses: actions/checkout@v3 | |
|
53 | 53 | - name: Set up Python ${{ matrix.python-version }} |
|
54 |
uses: actions/setup-python@v |
|
|
54 | uses: actions/setup-python@v4 | |
|
55 | 55 | with: |
|
56 | 56 | python-version: ${{ matrix.python-version }} |
|
57 | 57 | cache: pip |
General Comments 0
You need to be logged in to leave comments.
Login now