merlin-utils/.github/workflows/make.yml

29 lines
493 B
YAML
Raw Permalink Normal View History

2020-11-12 20:26:24 +00:00
name: Make
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
2022-12-07 04:27:29 +00:00
- uses: actions/checkout@v3
2020-11-12 20:26:24 +00:00
with:
submodules: true
2020-11-12 22:44:42 +00:00
- name: brew
if: matrix.os == 'macos-latest'
shell: bash
run: brew install re2c
- name: apt-get
if: matrix.os == 'ubuntu-latest'
shell: bash
run: sudo apt-get -y install re2c
2020-11-12 20:26:24 +00:00
- name: make
run: make all