Skip to content

Commit

Permalink
Set up basic GHA workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
  • Loading branch information
flichtenheld committed Aug 14, 2023
1 parent 2d15ec0 commit b3f40fe
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build

on:
push:
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install mono-devel
- name: Build
run: ./build.sh

0 comments on commit b3f40fe

Please sign in to comment.