Skip to content

update gitignore and hatch for check manifest exclusions #44

update gitignore and hatch for check manifest exclusions

update gitignore and hatch for check manifest exclusions #44

Workflow file for this run

name: Build Status
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
checks: write
pull-requests: write
jobs:
build:
strategy:
matrix:
template:
- python
# - cpp
- js
- jupyter
- rust
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- run: pip install copier
- run: |
make gen-${{matrix.template}}
make test-${{matrix.template}}