Merge pull request #160 from skogsbaer/scroll-to-stack-end #312
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: Python CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# You need to change to branch protection rules if you change the versions here | |
python-version: [3.12.1, 3.13.0] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Test | |
run: | | |
cd python && ./allTestsForPyVersion | |
- name: Test pytrace-generator | |
run: | | |
python3 python/src/runYourProgram.py --install-mode installOnly | |
python3 pytrace-generator/test/runTests.py |