Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryOderNichts committed Feb 6, 2022
1 parent 1b937bf commit 0c42a01
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on: [push, pull_request]

jobs:
build-binary:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: build binary
run: |
docker run --rm -v ${PWD}:/project garyodernichts/moonlightbuilder make
- uses: actions/upload-artifact@master
with:
name: binary
path: "*.rpx"

0 comments on commit 0c42a01

Please sign in to comment.