Skip to content

More GitLab -> GitHub #1

More GitLab -> GitHub

More GitLab -> GitHub #1

Workflow file for this run

name: Tests
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.12"]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install miniconda
uses: conda-incubator/setup-miniconda@v3
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