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

28 lines
574 B
YAML
Raw Normal View History

name: test-build
on:
push:
2020-11-25 18:41:55 +01:00
branches: [ master ]
pull_request:
2020-11-25 18:41:55 +01:00
branches: [ master ]
jobs:
2020-10-17 01:28:15 +02:00
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install dependencies
2021-05-07 13:02:16 +02:00
run: sudo apt-get install emacs autoconf
2021-05-12 02:25:23 +02:00
- name: ./autogen.sh
run: ./autogen.sh
2021-05-07 12:58:30 +02:00
- name: ./configure
2021-05-12 02:16:45 +02:00
run: QMCKL_DEVEL=1 ./configure --enable-silent-rules --enable-maintainer-mode --enable-debug
2021-04-21 01:56:47 +02:00
- name: make
2021-05-12 02:16:45 +02:00
run: make -j 8
- name: make check
run: make -j check
- name: make distcheck
2021-04-21 01:56:47 +02:00
run: make distcheck