Skip to content

Commit

Permalink
use hatch directly
Browse files Browse the repository at this point in the history
  • Loading branch information
ikappaki committed Nov 29, 2024
1 parent 92e8433 commit 4c186fd
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,25 @@ jobs:
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"
python-version: ["3.9"]
# 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]"
pip install hatch
hatch env create test
hatch env use test
hatch install
- name: Test
run: |
basilisp test
hatch run basilisp test
- name: Check Kernel
run: |
cd $HOME
Expand Down

0 comments on commit 4c186fd

Please sign in to comment.