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 a1df5c7 commit e37d0fbCopy full SHA for e37d0fb
.github/workflows/test.yml
@@ -20,9 +20,9 @@ jobs:
20
echo "XML_CATALOG_FILES=/opt/homebrew/etc/xml/catalog" >> $GITHUB_ENV
21
- name: Install Python packages
22
run: |
23
- python3 -m venv venv
+ python3 -m venv ~/venv
24
pwd
25
- source venv/bin/activate
+ source ~/venv/bin/activate
26
python3 -m pip install --upgrade pip
27
python3 -m pip install pylint pycodestyle pygit2
28
- name: Checkout
@@ -35,5 +35,5 @@ jobs:
35
git config --global user.name "Test User"
36
gpg --batch --gen-key .github/workflows/testkey.conf
37
38
39
make KEY:=$(gpg --list-keys --with-colons | awk -F: '/^pub/ {print $5; exit}') test
0 commit comments