8f91b297f1
Run a program test at the end.
24 lines
461 B
YAML
24 lines
461 B
YAML
name: TerminalImageViewer CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "*" ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Install dependencies
|
|
run: sudo apt-get install -qy imagemagick
|
|
- name: Build
|
|
run: make -C src
|
|
- name: Install
|
|
run: sudo make -C src install
|
|
- name: Test
|
|
run: tiv /usr/share/pixmaps/debian-logo.png
|