File tree 3 files changed +14
-3
lines changed
3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 14
14
- name : Set up Go
15
15
uses : actions/setup-go@v2
16
16
with :
17
- stable : ' false '
18
- go-version : 1.16.0-rc1
17
+ stable : ' true '
18
+ go-version : ' 1.16'
19
19
- name : Generate test coverage
20
20
run : go test -race -coverprofile=coverage.txt -covermode=atomic ./...
21
21
- name : Upload coverage to Codecov
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ install:
15
15
16
16
install-systemd : install
17
17
mkdir -p $(HOME ) /.config/systemd/user/
18
- cp multiverse.service $(HOME ) /.config/systemd/user
18
+ cp misc/ multiverse-user .service $(HOME ) /.config/systemd/user
19
19
20
20
test :
21
21
$(GOCC ) test ./... -cover
Original file line number Diff line number Diff line change
1
+ [Unit]
2
+ Description =Multiverse daemon
3
+ After =network.target
4
+
5
+ [Service]
6
+ ExecStart =/bin/bash -c "exec $HOME/go/bin/multi daemon"
7
+ Restart =always
8
+ RestartSec =5s
9
+
10
+ [Install]
11
+ WantedBy =default.target
You can’t perform that action at this time.
0 commit comments