Skip to content

Commit

Permalink
Add initial build action
Browse files Browse the repository at this point in the history
  • Loading branch information
gwauge committed Dec 6, 2024
1 parent bcd68ef commit ddcaff3
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build project

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up environment
run: sudo apt-get update && sudo apt-get install -y build-essential

- name: Run build script
run: ./build.sh

0 comments on commit ddcaff3

Please sign in to comment.