waforth/.github/workflows/build-standalone.yml

20 lines
414 B
YAML
Raw Normal View History

2022-05-26 09:26:34 +02:00
name: Build Standalone
2022-05-24 07:41:33 +02:00
on:
2022-05-26 09:26:34 +02:00
push:
pull_request:
2022-05-24 07:41:33 +02:00
workflow_dispatch:
2022-05-26 09:26:34 +02:00
workflow_call:
2022-05-24 07:41:33 +02:00
jobs:
2022-05-26 18:06:24 +02:00
build-standalone:
2022-05-26 09:26:34 +02:00
strategy:
matrix:
os: [macos-latest, ubuntu-18.04, windows-latest]
2022-05-26 09:26:34 +02:00
runs-on: ${{ matrix.os }}
2022-05-24 07:41:33 +02:00
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/setup
2022-10-08 09:16:30 +02:00
- run: make -C src/standalone install-deps package
- run: make -C src/standalone check