Version 1.2.0 #56
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Version 20200921, by Eriberto Mota, modified by Christoph Raitzig | |
name: full-check | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install_dependencies | |
run: sudo apt install libjpeg-dev libpng-dev libcurl4-gnutls-dev libncurses5-dev autoconf-archive pkg-config | |
- name: first_build | |
run: | | |
./autogen.sh | |
./configure | |
make | |
sudo make install | |
sudo make uninstall | |
make distclean | |
- name: second_build | |
run: | | |
./autogen.sh | |
./configure | |
make | |
sudo make install | |
- name: run_program | |
run: | | |
TERM=xterm-256color jp2a --colors .github/jp2a.jpg | |
TERM=xterm-256color jp2a --background=light -b -f -x -y --colors .github/jp2a.jpg |