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 7dd45ab commit 7439f61Copy full SHA for 7439f61
.github/workflows/test.yml
@@ -19,6 +19,7 @@ jobs:
19
- run: lsb_release --help
20
- run: lsb_release -a
21
- run: lsb_release -r
22
+ - run: lsb_release -r | awk '/Release:/ { print $2 }'
23
test-macos:
24
strategy:
25
fail-fast: false
@@ -40,6 +41,7 @@ jobs:
40
41
continue-on-error: true # fail macos-12
42
- run: sw_vers | awk '/ProductVersion/ { print $2 }'
43
- run: sw_vers --productVersion
44
+ continue-on-error: true # fail macos-12
45
test-windows:
46
47
@@ -53,4 +55,4 @@ jobs:
53
55
- run: systeminfo /?
54
56
- run: systeminfo
57
- run: systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
- - run: systeminfo | awk '/OS Version:/ { print $2 }'
58
+ - run: systeminfo | awk '/OS Version:/ { print $3 }'
0 commit comments