Kotlinc 2.3.0 update pre-work #1122
This file contains hidden or 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: tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| inputs: | |
| git-ref: | |
| description: Git Ref (Optional) | |
| required: false | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| TEST_TMPDIR: '/tmp' | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| pip install --upgrade pip setuptools | |
| python setup.py install | |
| pip install .[testing] | |
| - name: Run tests | |
| run: | | |
| # Find all test files, print their names and execute them in parallel | |
| # with a maximum of 20 proccesses. | |
| find . -type f -name "*_test.py" -print0 | xargs -t -0 -n1 -P 20 python3 |