Some panda modifications #14
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: Test Python | |
| on: | |
| push: | |
| branches: [ master, development, experimental, test* ] | |
| pull_request: | |
| branches: [ master, development, experimental, test* ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Print refs | |
| run: | | |
| echo "github.ref is: ${{ github.ref }}" | |
| echo "github.base_ref is: ${{ github.base_ref }}" | |
| - name: Install Python package | |
| run: | | |
| cd src/Python | |
| python setup.py install | |