Fix up typename errors in pybind_fstext.h #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allow rebuilds via API. | |
repository_dispatch: | |
types: rebuild | |
concurrency: | |
group: run_tests-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
label: linux-64 | |
prefix: /usr/share/miniconda3/envs/my-env | |
#- os: macos-latest | |
# label: osx-64 | |
# prefix: /Users/runner/miniconda3/envs/my-env | |
#- os: windows-latest | |
# label: win-64 | |
# prefix: C:\Miniconda3\envs\my-env | |
name: ${{ matrix.label }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 0 | |
- name: Install Conda environment with Micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: environment.yml | |
environment-name: my-env | |
create-args: >- | |
python=3.10 | |
cache-environment: true | |
- name: Build kalpy | |
env: | |
KALDI_ROOT: ~/micromamba/envs/my-env | |
shell: bash -l {0} | |
run: pip install . | |
- name: Run tests | |
shell: bash -l {0} | |
run: pytest -x ./tests |