Skip to content

Edit readme and integration settings for the legacy branch. #30

Edit readme and integration settings for the legacy branch.

Edit readme and integration settings for the legacy branch. #30

Workflow file for this run

name: Test build and run tests
on:
push:
branches: [ legacy, legacy-dev ]
pull_request:
branches: [ legacy, legacy-dev ]
jobs:
tests-py2:
name: Runs tests that require python 2
runs-on: ubuntu-latest
container:
image: python:2.7.18-buster
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
# - name: Set up Python 2.7
# uses: actions/setup-python@v2
# with:
# python-version: "2.7"
- name: Test by decompiling a script and building un.rpyc
run: |
./unrpyc.py --clobber testcases/script.rpyc
diff -u testcases/script.orig.rpy testcases/script.rpy
cd un.rpyc;
./compile.py -p 1
cd ..