secret/.github/workflows/build.yml
Adrien Gallouët 11625a500a Add a GH build workflow
Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
2020-04-25 22:21:37 +00:00

23 lines
401 B
YAML

name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Build
run: |
git submodule update --init --recursive
make prefix=. install
- uses: actions/upload-artifact@v1
with:
name: ${{ matrix.os }}
path: ./bin