-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is the 3rd rewrite of deno_sdl2. First one used a TCP backend. Second one used deno_bindgen to wrap rust-sdl2. This one removes that abstraction and we're left with raw bindings to SDL2. It's much easier to maintain/release deno_sdl2 now!
- Loading branch information
1 parent
1fa5286
commit 0dd7e43
Showing
28 changed files
with
1,239 additions
and
3,342 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
name: Build ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: canary | ||
|
||
- name: typecheck & formatting | ||
shell: bash | ||
run: | | ||
set -xeuo pipefail | ||
deno cache --unstable mod.ts | ||
deno fmt --check |
Oops, something went wrong.