This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
ci: correct log file paths for pip and pixi tests #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test (#1925) | |
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 pixi | |
run: |- | |
cargo install --git https://github.com/tdejager/pixi.git --branch feat/allow-manylinux-wheeltags --locked pixi | |
echo ~/.cargo/bin >> "$GITHUB_PATH" | |
- name: Setup uv | |
run: curl -LsSf https://astral.sh/uv/install.sh | sh | |
- name: Test | |
run: python main.py | |
- name: Output Results to GitHub Summary | |
run: cat results.md >> "$GITHUB_STEP_SUMMARY" | |
- name: Upload Logs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: logs | |
path: logs |