We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d24d971 commit 07ac044Copy full SHA for 07ac044
.github/workflows/tests.yml
@@ -79,18 +79,23 @@ jobs:
79
cppstd: "-std=c++98"
80
81
steps:
82
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
83
+
84
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v4
85
+ uses: actions/setup-python@v5
86
with:
87
python-version: ${{ matrix.python-version }}
88
89
- name: Display Python version
90
run: python -c "import sys; print(sys.version)"
91
92
- name: Install Python lib and test libs
93
run: |
94
pip install '.[test]'
95
96
- name: Run pycodestyle
97
run: pycodestyle . --exclude=docs
98
99
- name: Setup castxml for Linux
100
if: matrix.os == 'ubuntu-20.04' && matrix.castxml == 'castxml'
101
0 commit comments