Fix logging #26
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: unit tests | |
on: [push, pull_request] | |
jobs: | |
unittests: | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Create fake Makefile config file | |
run: touch config.mk | |
- name: Install Dependencies | |
run: make install | |
- name: Show versions | |
run: make versions | |
- name: Run tests | |
run: make tests | |
runs-on: ubuntu-latest |