mirror of
https://github.com/TREX-CoE/qmckl.git
synced 2024-11-04 21:24:11 +01:00
41 lines
908 B
YAML
41 lines
908 B
YAML
name: test-build
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: install dependencies
|
|
run: sudo apt-get install emacs
|
|
|
|
- name: make
|
|
run: make -C src/
|
|
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: install dependencies
|
|
run: sudo apt-get install emacs
|
|
- name: Checkout submodules using a PAT
|
|
run: |
|
|
git config --file .gitmodules --get-regexp url | while read url; do
|
|
git config --file=.gitmodules $(echo "$url" | sed -E "s/git@github.com:|https:\/\/github.com\//https:\/\/${{ secrets.CI_PAT }}:${{ secrets.CI_PAT }}@github.com\//")
|
|
done
|
|
git submodule sync
|
|
git submodule update --init --recursive
|
|
- name: make
|
|
run: make -C src/ test
|