(Translated by https://www.hiragana.jp/)
debug · sail-sg/envpool@eac02cd · GitHub
Skip to content

debug

debug #237

Workflow file for this run

name: Release PyPI Wheel
# on: [push, pull_request]
on:
push:
branches:
- main
- debug
tags:
- v*
jobs:
release:
runs-on: ubuntu-latest
container: trinkle23897/envpool-release:2023-01-02-5f1a5fd
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
run: |
ln -sf /root/.cache $HOME/.cache
ln -sf /root/.pyenv $HOME/.pyenv
pyenv global ${{ matrix.python-version }}-dev
- name: Build
run: |
make pypi-wheel
pip3 install dist/*.whl --force-reinstall
- name: Test
run: |
make release-test
- name: Upload artifact
uses: actions/upload-artifact@main
with:
name: wheel
path: wheelhouse/