Skip to content

Commit

Permalink
PR #136 from penguin359/penguin359-ci: Basic testing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronliu0130 authored Jan 19, 2024
2 parents 7573de8 + ba7bafe commit 71d1a80
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 71d1a80

Please sign in to comment.