Skip to content

Commit

Permalink
Define CI build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
slowriot authored Nov 14, 2024
1 parent d51a87b commit 9581c27
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI build

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup Emscripten toolchain
uses: mymindstorm/setup-emsdk@v14
with:
version: 3.1.71
- name: build
run: ./build.sh

0 comments on commit 9581c27

Please sign in to comment.