Skip to content

Commit 0c224a1

Browse files
committed
Windows
1 parent 10c9213 commit 0c224a1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,20 @@ jobs:
4040
with:
4141
fetch-depth: 0
4242
- name: Test
43+
if: runner.os != 'Windows'
4344
run: |
4445
git config --global user.email "[email protected]"
4546
git config --global user.name "Test User"
4647
gpg --batch --gen-key .github/workflows/testkey.conf
4748
source ~/venv/bin/activate
4849
make KEY:=$(gpg --list-keys --with-colons | awk -F: '/^pub/ {print $5; exit}') test
50+
- name: Test
51+
if: runner.os == 'Windows'
52+
run: |
53+
git config --global user.email "[email protected]"
54+
git config --global user.name "Test User"
55+
gpg --batch --gen-key .github/workflows/testkey.conf
56+
dir venv
57+
dir venv/Scripts
58+
venv/Scripts/activate
59+
make KEY:=$(gpg --list-keys --with-colons | awk -F: '/^pub/ {print $5; exit}') test

0 commit comments

Comments
 (0)