feat(repo): rename from 'esp-ui' to 'esp-brookesia' #5
Workflow file for this run
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
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 |