Skip to content

feat(repo): rename from 'esp-ui' to 'esp-brookesia' #5

feat(repo): rename from 'esp-ui' to 'esp-brookesia'

feat(repo): rename from 'esp-ui' to 'esp-brookesia' #5

Workflow file for this run

name: Build Test Application
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize]
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
container:
image: ubuntu:22.04
options: --user root
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: true
- name: Update apt and install dependencies
run: |
apt-get update
apt-get install -y gcc gdb cmake make build-essential libsdl2-dev
- name: Build Application
working-directory: ./
run: |
cmake -B ./build & make -C ./build