Regenerate autotools files after Makefile.am change #47
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
name: Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update apt | |
run: sudo apt-get update | |
- name: Install apt deps | |
run: sudo apt-get install -y librecode-dev | |
- name: Configure build | |
run: ./configure | |
- name: Build | |
run: make -j4 | |
- name: Test | |
run: make test | |
- name: Test log | |
run: cat test/test-suite.log | |
- name: Install | |
run: make install DESTDIR=/tmp/inst |