github/workflow: run 'Info' step first

This commit is contained in:
Tom 2021-05-18 02:40:04 +02:00
parent 91534ec8be
commit 9143edba0e

View File

@ -11,6 +11,8 @@ jobs:
env: env:
CXX: ${{ matrix.compiler }} CXX: ${{ matrix.compiler }}
steps: steps:
- name: Info
run: cmake --version && $CXX --version && uname -a
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
@ -24,8 +26,6 @@ jobs:
&& cd build && cd build
&& cmake -DCMAKE_BUILD_TYPE=Release -DCATCH_BUILD_TESTING=Off .. && cmake -DCMAKE_BUILD_TYPE=Release -DCATCH_BUILD_TESTING=Off ..
&& sudo make install && sudo make install
- name: Info
run: cmake --version && $CXX --version && uname -a
- name: Build - name: Build
run: > run: >
mkdir -p build mkdir -p build