-
Notifications
You must be signed in to change notification settings - Fork 71
42 lines (38 loc) · 1.09 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
on: [push, pull_request]
name: Test
jobs:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
go-version:
- "1.20"
channel:
- latest/stable
- latest/candidate
env:
TF_ACC: "1"
GO111MODULE: "on"
LXD_REMOTE: local
LXD_ADDR: localhost
LXD_PORT: 8443
LXD_GENERATE_CLIENT_CERTS: "true"
LXD_ACCEPT_SERVER_CERTIFICATE: "true"
LXD_SCHEME: https
LXD_PASSWORD: the-password
steps:
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Setup LXD from ${{ matrix.channel }} channel
run: |
sudo snap refresh lxd --channel=${{ matrix.channel }}
sudo lxd waitready --timeout 60
sudo lxd init --auto --trust-password="$LXD_PASSWORD" --network-port=8443 --network-address='[::]'
sudo chmod 777 /var/snap/lxd/common/lxd/unix.socket
- uses: actions/checkout@v2
- run: make fmtcheck
- run: make vet
- run: make test