Skip to content

Commit

Permalink
Create makefile.yml for build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rwk-unil authored Mar 7, 2024
1 parent f3ccf35 commit bf5be92
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Makefile CI

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

jobs:
build:

runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3

- name: Install dependencies
run: sudo apt install libhts-dev libboost-all-dev libcurl4-openssl-dev liblzma-dev git -y

- name: Update submodules
run: git submodule update --init --recursive

- name: Build
run: make

0 comments on commit bf5be92

Please sign in to comment.