Skip to content

Add Build Action

Add Build Action #3

Workflow file for this run

name: build
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- trunk
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: 3.13
- name: Make Package
run: |
make package