Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

ci: consolidate workflows for streamlined testing #1

ci: consolidate workflows for streamlined testing

ci: consolidate workflows for streamlined testing #1

Workflow file for this run

name: Test
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
- name: Setup uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Setup pixi
uses: prefix-dev/setup-pixi@v0
- name: Test
run: bash main.sh
- name: Output Results to GitHub Summary
run: cat results.md >> "$GITHUB_STEP_SUMMARY"