Skip to content

Commit 290bab8

Browse files
Update tests
1 parent 060f26c commit 290bab8

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.github/workflows/code-styles.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,20 @@ jobs:
1616
runs-on: ${{ matrix.operating-system }}
1717
strategy:
1818
matrix:
19-
python-version: [ '3.10' ]
20-
operating-system: [ ubuntu-20.04 ]
19+
python-version: [ '3.13' ]
20+
operating-system: [ ubuntu-22.04 ]
2121

2222
steps:
2323
- name: Setup Python
24-
uses: actions/setup-python@v2
24+
# Commit hash for v5.5.0: https://github.com/actions/setup-python/releases/tag/v5.5.0
25+
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55
2526
with:
2627
python-version: ${{ matrix.python-version }}
2728
architecture: x64
2829

2930
- name: Checkout fail2slack
30-
uses: actions/checkout@v2
31+
# Commit hash for v3.5.3: https://github.com/actions/checkout/releases/tag/v4.2.2
32+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3133

3234
- name: Install Requirements
3335
run: |

.github/workflows/unittest.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,20 @@ jobs:
1616
runs-on: ${{ matrix.operating-system }}
1717
strategy:
1818
matrix:
19-
python-version: [ '3.10', '3.9', '3.8', '3.7' ]
20-
operating-system: [ ubuntu-20.04 ]
19+
python-version: [ '3.13', '3.12', '3.11', '3.10', '3.9' ]
20+
operating-system: [ ubuntu-22.04 ]
2121

2222
steps:
2323
- name: Setup Python
24-
uses: actions/setup-python@v2
24+
# Commit hash for v5.5.0: https://github.com/actions/setup-python/releases/tag/v5.5.0
25+
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55
2526
with:
2627
python-version: ${{ matrix.python-version }}
2728
architecture: x64
2829

2930
- name: Checkout fail2slack
30-
uses: actions/checkout@v2
31+
# Commit hash for v3.5.3: https://github.com/actions/checkout/releases/tag/v4.2.2
32+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3133

3234
- name: Install Requirements
3335
run: |

0 commit comments

Comments
 (0)