Init sine lookup table #115
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: Makefile CI | |
on: | |
push: | |
branches: [ "master" ] | |
paths-ignore: | |
- 'README*' | |
- 'assets/**' | |
pull_request: | |
branches: [ "master" ] | |
paths-ignore: | |
- 'README*' | |
- 'assets/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: requirements | |
run: sudo apt-get install libxrandr-dev | |
- name: build | |
run: make && cd demos && make | |
# NOTE: running it in CI as ./cube -mi 5 doesn't work as CI redirects the stdout to a file |