We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b94b80a commit 4a50113Copy full SHA for 4a50113
.github/workflows/tests.yml
@@ -1,6 +1,10 @@
1
name: tests
2
3
-on: push
+on:
4
+ push:
5
+ pull_request:
6
+ branches:
7
+ - master
8
9
jobs:
10
build:
@@ -40,10 +44,12 @@ jobs:
40
44
CONAN_CURRENT_PAGE: ${{ matrix.conan-current-page }}
41
45
steps:
42
46
- uses: actions/checkout@v2
43
- - uses: actions/setup-python@v1
47
+ - uses: actions/setup-python@v5
48
+ with:
49
+ python-version: "3.10"
50
51
- name: Install dependencies
- run: python -m pip install -U conan conan_package_tools
52
+ run: python -m pip install -U "conan<2" conan_package_tools
53
54
- name: Install Ubuntu compilers
55
if: matrix.os == 'ubuntu-22.04'
0 commit comments