Skip to content

Commit

Permalink
workflow: Add github action for build test
Browse files Browse the repository at this point in the history
  • Loading branch information
kallisti5 committed Oct 24, 2023
1 parent b98466e commit 23f9ad2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build
run-name: Test code buildability 🚀
on: [push]
jobs:
Build-GuiSan:
runs-on: ubuntu-latest
steps:
- run: 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 }}."

0 comments on commit 23f9ad2

Please sign in to comment.