1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-07-19 01:13:50 +02:00
qmckl/.github/workflows/test-build.yml
2021-05-12 13:24:35 +02:00

29 lines
608 B
YAML

name: test-build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
x86_ubuntu:
runs-on: ubuntu-latest
name: x86 Ubuntu latest
steps:
- uses: actions/checkout@v2
- name: install dependencies
run: sudo apt-get install emacs autoconf
- name: ./autogen.sh
run: ./autogen.sh
- 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