1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-06-01 10:55:36 +02:00
qmckl/.github/workflows/test-build.yml
2021-05-12 02:16:45 +02:00

28 lines
573 B
YAML

name: test-build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: sudo apt-get install emacs autoconf
- name: autoreconf
run: autoreconf -i
- name: ./configure
run: QMCKL_DEVEL=1 ./configure --enable-silent-rules --enable-maintainer-mode --enable-debug
- name: make
run: make -j 8
- name: make check
run: make -j check
- name: make distcheck
run: make distcheck