We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f66bd23 commit efa1b00Copy full SHA for efa1b00
1 file changed
.github/workflows/test.yaml
@@ -5,7 +5,7 @@ on: [push, pull_request]
5
jobs:
6
integration:
7
name: Integration
8
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-latest
9
strategy:
10
matrix:
11
python:
@@ -21,6 +21,13 @@ jobs:
21
# language=bash
22
run: |
23
set -euxo pipefail
24
+
25
+ if snap info lxd | grep "installed"; then
26
+ sudo snap refresh lxd --channel=latest/stable
27
+ else
28
+ sudo snap install lxd --channel=latest/stable
29
+ fi
30
31
sudo lxd waitready
32
sudo lxd init --auto
33
sudo chmod a+wr /var/snap/lxd/common/lxd/unix.socket
0 commit comments