logger: Log only file name and change the log format a bit #137
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
# Copyright (c) 2020-2024 Siddharth Chandrasekaran <[email protected]> | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Build CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: configure | |
run: cmake . | |
- name: make | |
run: make | |
- name: make check | |
run: make check_utils |