make DZG workaround more specific #5
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+test | |
on: [push, pull_request] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: install deps | |
run: sudo apt-get install uuid-dev | |
- uses: actions/checkout@v2 | |
- run: make -C sml | |
- run: make -C examples | |
- run: make -C test |