Skip to content

Fix/alphabet encoding dataset refactoring (#43) #86

Fix/alphabet encoding dataset refactoring (#43)

Fix/alphabet encoding dataset refactoring (#43) #86

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
make install-dev
- name: Format with black
run: |
make format
- name: Test with pytest
run: |
make test