Skip to content

chore(satellite): sync metis from aicom monorepo #1

chore(satellite): sync metis from aicom monorepo

chore(satellite): sync metis from aicom monorepo #1

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install build tools
run: pip install build twine
- name: Build wheel and sdist
run: python -m build
- name: Run tests
run: |
pip install -e ".[dev,distributed]" pytest-cov
pytest -q
- name: Upload release artifacts
uses: softprops/action-gh-release@v2
with:
files: |
dist/*
generate_release_notes: true