Skip to content

Basilisp 0.3.0, python [3.9, 3.13] #22

Basilisp 0.3.0, python [3.9, 3.13]

Basilisp 0.3.0, python [3.9, 3.13] #22

Workflow file for this run

name: Run tests
on:
pull_request:
types: [ opened, synchronize, reopened ]
push:
branches: [ main ]
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
run-tests:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest]
version: ['3.12']
# version: ['3.9', '3.10', '3.11', '3.12', '3.13']
# include:
# - os: windows-latest
# version: '3.13'
# - os: macos-latest
# version: '3.13'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version }}
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Setup a local virtual environment
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/cache@v4
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ runner.os }}-${{ matrix.version }}-${{ hashFiles('poetry.lock') }}
- name: Install the project dependencies
run: poetry install
- name: Run tests
run: poetry run python abc.py test -- -- -- abc
# run: poetry run basilisp test -- args -v