-
Notifications
You must be signed in to change notification settings - Fork 9
39 lines (39 loc) · 1.19 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
name: Test
on:
pull_request:
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
jobs:
unit-tests:
name: Run unit-tests
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout head
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: 'go.mod'
- name: Install keyring test dependencies on Ubuntu
run: |
sudo apt-get update
sudo apt-get install -y gnome-keyring build-essential ca-certificates
if: matrix.os == 'ubuntu-latest'
- name: Run tests on Ubuntu with keyring
run: |
echo 'somecredstorepass' | gnome-keyring-daemon --unlock
make test
shell: dbus-run-session -- bash --noprofile --norc -eo pipefail {0}
if: matrix.os == 'ubuntu-latest'
- name: Run tests
run: make test
if: matrix.os != 'ubuntu-latest'
- name: Test build
run: make build
- name: Test Runtime
run: go run cmd/upctl/main.go -h