Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test
on: [push, pull_request]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y doxygen autoconf-archive
- name: Install latest autoconf
run: |
wget https://ftpmirror.gnu.org/gnu/autoconf/autoconf-latest.tar.xz
tar xf autoconf-latest.tar.xz
cd autoconf-*/
./configure
make
sudo make install
- name: Check out repository code
uses: actions/checkout@v2
- run: cd ${{ github.workspace }}
- run: ./autogen.sh
- run: ./configure
- run: make
- run: make check
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Makefile.in
aclocal.m4
autom4te.cache
m4
depcomp
config.h.in
configure
config.h
config.log
config.status
config.guess
config.sub
INSTALL
install-sh
missing
libtool
ltmain.sh
Makefile
stamp-h1
.deps
build-aux/compile
build-aux/test-driver
*~
datrie-*.pc
doc/Doxyfile
*.o