PR #136 from penguin359/penguin359-ci: Basic testing CI
This commit is contained in:
commit
71d1a80d14
1 changed files with 22 additions and 0 deletions
22
.github/workflows/ci.yml
vendored
Normal file
22
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
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: Test
|
||||
run: ./src/tiv -w 80 -h 24 /usr/share/pixmaps/debian-logo.png
|
Loading…
Reference in a new issue