Skip to content

run __main__ in test #125

run __main__ in test

run __main__ in test #125

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
defaults:
run:
shell: pwsh
jobs:
test:
name: Test (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
python-version: ["3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- uses: conda-incubator/setup-miniconda@a4260408e20b96e80095f42ff7f1a15b27dd94ca # v3.0.4
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
environment-file: ./environment.yml
- name: install local package
run: invoke install
- name: check
run: invoke check
continue-on-error: true
- name: test
run: invoke test