Skip to content

0.0.1dev0

0.0.1dev0 #5

Workflow file for this run

# name: CI
# on:
# push:
# branches:
# - main
# pull_request:
# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v3
# - name: Set up Python
# uses: actions/setup-python@v4
# with:
# python-version: 3.10
# - name: Install dependencies
# run: pip install meson meson-python
# - name: Build the project
# run: |
# meson setup builddir
# meson compile -C builddir
# - name: Run tests
# run: python -m unittest discover lightnumpy/tests