Skip to content

gh action test

gh action test #7

Workflow file for this run

name: CI
on:
create:
tags:
push:
branches:
- gh-action
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup emsdk
uses: mymindstorm/setup-emsdk@v11
with:
# Make sure to set a version number!
version: 3.1.45
# This is the name of the cache folder.
# The cache folder will be placed in the build directory,
# so make sure it doesn't conflict with anything!
actions-cache-folder: 'emsdk-cache'
- name: build rgbds
run: ./build-rgbds.sh
shell: bash