update GH action to 3.13, basilisp test #48
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: Basilisp Jupyter Kernel package | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.10"] | |
include: | |
- os: windows-latest | |
python-version: "3.13" | |
- os: macos-latest | |
python-version: "3.13" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
- name: Install dependencies | |
run: | | |
pip install -e ".[test]" | |
- name: Test | |
run: | | |
basilisp test | |
- name: Check Kernel | |
run: | | |
cd $HOME | |
jupyter kernelspec list | grep basilisp |