Test code buildability 🚀 #246
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 | |
run-name: Test code buildability 🚀 | |
on: [push, pull_request] | |
jobs: | |
Build-GuiSan: | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo apt install build-essential libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev libsdl2-mixer-dev scons | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." | |
- name: List files in the repository | |
run: | | |
cd ${{ github.workspace }} | |
scons | |
- run: echo "🍏 This job's status is ${{ job.status }}." |