Merge pull request #63 from CapsCollective/feature/tilemap-example #383
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: Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: update apt | |
run: sudo apt-get update | |
- name: install vulkan dependencies | |
run: sudo apt install git build-essential libx11-xcb-dev libxkbcommon-dev libwayland-dev libxrandr-dev | |
- name: install glfw dependencies | |
run: sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev | |
- name: perform setup | |
run: ./scripts/setup.sh | |
- name: make testapp | |
run: make testapp | |
- name: run testapp | |
run: cd bin/tests/build; ./app |