Fixed moment tensor documentation issue #651
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push] | |
jobs: | |
build-serial: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check GNU and Cmake versions | |
run: gcc --version && cmake --version | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
- name: Get submodules | |
run: git submodule init | |
&& git submodule update | |
- name: Configure Serial build | |
run: cmake -S . -B build | |
- name: Build | |
run: cmake --build build |