Skip to content

Commit

Permalink
Adds Compile workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Feb 25, 2022
1 parent 459ece1 commit 4a1f862
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Compile

# yamllint disable rule:truthy
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev

jobs:
Build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: make
run: make

0 comments on commit 4a1f862

Please sign in to comment.