Skip to content

Commit

Permalink
try to run on actions
Browse files Browse the repository at this point in the history
Ughuuu committed Aug 11, 2024

Verified

This commit was signed with the committer’s verified signature.
cjihrig Colin Ihrig
1 parent 71044d3 commit c49275e
Showing 2 changed files with 34 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build Project

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install Clang
run: |
sudo apt-get update
sudo apt-get install -y clang
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # Specify the version of Python you need

- name: Install SCons
run: |
pip install scons
- name: Build with SCons
run: |
scons
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
API Interface that talks to godot-sandbox host machine from cpp guest.

0 comments on commit c49275e

Please sign in to comment.