Skip to content

add carbon

add carbon #857

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install
run: make deps
- name: Test
run: make clean && make test