Skip to content

github: Introduce build workflow #7

github: Introduce build workflow

github: Introduce build workflow #7

Workflow file for this run

name: Buildtest
on: push
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Dependencies (Ubuntu)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libxml2-dev libusb-1.0-0-dev
- name: Dependencies (macOS)
run: |
brew install libxml2
brew install libusb
- name: Build
run: make