Skip to content

Move utils into subpex dir #4

Move utils into subpex dir

Move utils into subpex dir #4

Workflow file for this run

Check failure on line 1 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: build
name: build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install miniconda
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Initialize conda environment
run: make conda-create
- name: Setup conda
run: make conda-setup
- name: Install conda dependencies
run: make from-conda-lock
- name: Poetry install
run: make install
- name: Run tests
run: make test