mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 04:41:46 +03:00
25 lines
410 B
YAML
25 lines
410 B
YAML
name: Demo
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
paths:
|
|
- 'demo/**'
|
|
release:
|
|
types: [ published ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
demo:
|
|
name: Demo
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v4
|
|
- uses: taiki-e/install-action@v2
|
|
with: { tool: just }
|
|
- run: cd demo && just build
|