Skip to content

Build snap

Build snap #127

Workflow file for this run

name: build
run-name: Build snap
on:
push:
branches:
- development
paths:
- 'snap/**'
- 'src/**'
- '!**.md'
pull_request:
paths:
- 'snap/**'
- 'src/**'
- '!**.md'
workflow_dispatch:
inputs:
test:
description: Run tests
required: true
type: boolean
default: true
jobs:
build:
if: ${{ !startsWith(github.ref, 'refs/tags') }}
runs-on: ${{ matrix.builder }}
strategy:
matrix:
include:
- builder: ubuntu-latest
arch: amd64
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build
with:
test: ${{ inputs.test || true }}