Bump version to 0.24.7 #15
Workflow file for this run
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, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.12"] | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Set up R | |
| uses: r-lib/actions/setup-r@v2 | |
| - name: Install R packages | |
| run: | | |
| Rscript -e 'install.packages(c("IRkernel", "arrow"), repos="https://cloud.r-project.org")' | |
| Rscript -e 'IRkernel::installspec()' | |
| - name: Install Python dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e .[dev] | |
| pip install sos-r sos-python sos-bash | |
| pip install bash_kernel | |
| python -m bash_kernel.install | |
| python -m sos_notebook.install | |
| - name: Run tests | |
| run: | | |
| pytest test/ -v --tb=short -x |