Skip to content

Commit e792e4e

Browse files
authored
Merge pull request #240 from CastXML/actions
tests: update actions to latest version
2 parents 045bf53 + 07ac044 commit e792e4e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,18 +82,23 @@ jobs:
8282
cppstd: "-std=c++98"
8383

8484
steps:
85-
- uses: actions/checkout@v3
85+
- uses: actions/checkout@v4
86+
8687
- name: Set up Python ${{ matrix.python-version }}
87-
uses: actions/setup-python@v4
88+
uses: actions/setup-python@v5
8889
with:
8990
python-version: ${{ matrix.python-version }}
91+
9092
- name: Display Python version
9193
run: python -c "import sys; print(sys.version)"
94+
9295
- name: Install Python lib and test libs
9396
run: |
9497
pip install '.[test]'
98+
9599
- name: Run pycodestyle
96100
run: pycodestyle . --exclude=docs
101+
97102
- name: Setup castxml for Linux
98103
if: matrix.os == 'ubuntu-22.04' && matrix.castxml == 'castxml'
99104
run: |

0 commit comments

Comments
 (0)