Skip to content

TestPyPy

TestPyPy #8

Workflow file for this run

name: TestPyPy
on:
workflow_dispatch:
jobs:
test:
name: Test
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: pypy3.10
architecture: "x64"
- name: Create venv
run: python -m venv venv
- name: Run test
shell: bash
run: |
export PATH="$(pwd)\venv\Scripts;$PATH"
export VIRTUAL_ENV="$(pwd)\venv"
python.exe example.py