Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bjlittle committed Oct 19, 2023
1 parent 7701120 commit 807298c
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: ci-tests

on:
pull_request:

push:
branches:
- "main"
- "v*x"
- "!conda-lock-auto-update"
- "!pre-commit-ci-update-config"
- "!dependabot/*"
tags:
- "v*"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
tests:
name: "tests py${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -l {0}

strategy:
fail-fast: false
matrix:
python-version: ["3.9"] #, "3.10", "3.11", "3.12"]

steps:
- uses: action/checkout@v4
with:
fetch-depth: 0

- name: "conda install"
uses: conda-incubator/setup-miniconda@v2
with:
miniforge-variant: Mambaforge
miniforge-version: latest
channels: conda-forge,defaults
channel-priority: true
auto-update-conda: true
python-version: $${{ matrix.python-version }}
environment-file: requirements/mo_pack.yml
activate-environment: mo-pack-dev

- run: |
conda info
conda list
python -V

0 comments on commit 807298c

Please sign in to comment.