mirror of
https://github.com/remko/waforth
synced 2024-12-28 10:00:06 +01:00
18 lines
No EOL
351 B
YAML
18 lines
No EOL
351 B
YAML
name: Build Standalone
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
build-standalone:
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest, ubuntu-18.04]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ./.github/actions/setup
|
|
- run: make -C src/standalone install-deps all |