We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e9de9e commit 62ccc3cCopy full SHA for 62ccc3c
.github/workflows/main.yml
@@ -13,12 +13,16 @@ jobs:
13
steps:
14
- uses: actions/checkout@v2
15
- uses: actions/setup-python@v4
16
+ with:
17
+ check-latest: true
18
- name: Install python-dev
- run: sudo apt-get install -y python2.7-dev
19
+ run: sudo apt-get install -y python3-dev
20
- name: Cache check-versions script
21
id: cache-check-versions
22
uses: actions/cache@v3
23
with:
24
path: ~/.cache/git-remote-hg
25
key: check-versions
- - run: ./tools/check-versions hg:$HG_VERSION
26
+ - run: |
27
+ python --version
28
+ ./tools/check-versions hg:$HG_VERSION
0 commit comments