Skip to content

updated (https://github.com/floooh/sokol/commit/f62817137961a1eedc3ea… #263

updated (https://github.com/floooh/sokol/commit/f62817137961a1eedc3ea…

updated (https://github.com/floooh/sokol/commit/f62817137961a1eedc3ea… #263

Workflow file for this run

name: Nim
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- if: runner.os == 'Linux'
name: prepare
run: |
sudo apt-get update
sudo apt-get install libglu1-mesa-dev mesa-common-dev xorg-dev libasound-dev
- uses: actions/checkout@main
- uses: jiro4989/setup-nim-action@v2
with:
nim-version: 2.0.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: build
run: |
nimble install -Y
nimble build_all