Flowers OOP with raylib/examples/models/resources/skybox.png #39
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: Nim CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jiro4989/setup-nim-action@v2 | |
with: | |
nim-version: 'stable' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies | |
run: | | |
sudo apt install libasound2-dev libx11-dev libxrandr-dev libxi-dev libgl1-mesa-dev libglu1-mesa-dev libxcursor-dev libxinerama-dev libwayland-dev libxkbcommon-dev libwayland-bin | |
- name: Run tests | |
run: nimble test -Y | |
# test-windows: | |
# runs-on: windows-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: jiro4989/setup-nim-action@v2 | |
# with: | |
# nim-version: 'stable' | |
# repo-token: ${{ secrets.GITHUB_TOKEN }} | |
# - name: Run tests | |
# run: nimble test -Y | |
# | |
# test-macos: | |
# runs-on: macos-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: jiro4989/setup-nim-action@v2 | |
# with: | |
# nim-version: 'stable' | |
# repo-token: ${{ secrets.GITHUB_TOKEN }} | |
# - name: Run tests | |
# run: nimble test -Y |