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 3ab3156 commit c053860Copy full SHA for c053860
.github/workflows/python.yml
@@ -57,7 +57,13 @@ jobs:
57
path: legendary/dist/*
58
59
deb:
60
- runs-on: ubuntu-22.04
+ runs-on: ${{ matrix.os }}
61
+ strategy:
62
+ matrix:
63
+ os: ['ubuntu-20.04', 'ubuntu-22.04']
64
+ fail-fast: false
65
+ max-parallel: 2
66
+
67
steps:
68
- uses: actions/checkout@v2
69
@@ -69,6 +75,10 @@ jobs:
75
python3-requests
70
76
python3-setuptools
71
77
python3-wheel
78
79
+ - name: Webview Dependencies
80
+ if: matrix.os == 'ubuntu-22.04'
81
+ run: sudo apt install
72
82
python3-webview
73
83
python3-gi
74
84
python3-gi-cairo
0 commit comments