ci(build): Quick and Dirty testing.
Some checks failed
build / build (push) Failing after 13s

Added steps to the workflow that should now allow the program and unit
file to be tested for functionality
This commit is contained in:
Robert Morrison 2024-07-03 22:07:06 +01:00
parent 481cc21d6c
commit f07c7f138c
Signed by: robert
GPG Key ID: 73E012EB3F4EC696

View File

@ -19,3 +19,16 @@ jobs:
- name: Run make
run: make
- name: Install dexedrine to the container
run: sudo make install
- name: Test unit file
run: systemd-analyze verify dexedrine.service
- name: Prepare to test the service
run: sudo systemctl --user daemon-reload
- name: Test starting the service
run: sudo systemctl --user start dexedrine.service
- name: Test stopping the service
run: sudo systemctl --user stop dexedrine.service