Deleted: examples folder: move to : https://github.com/dinau/imguin_e… #6
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: Linux OS(Ubuntu) compilation | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jiro4989/setup-nim-action@v2 | |
with: | |
nim-version: '2.2.0' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- run: | | |
sudo apt install xorg-dev libopengl-dev libgl1-mesa-dev | |
sudo apt install libglfw3 libglfw3-dev | |
sudo apt install libsdl2-dev | |
- run: nimble make |