Skip to content

Merge pull request #2 from scottstanie/move-to-pixi #11

Merge pull request #2 from scottstanie/move-to-pixi

Merge pull request #2 from scottstanie/move-to-pixi #11

Workflow file for this run

name: CI
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
env:
# https://github.com/pytest-dev/pytest/issues/2042#issuecomment-429289164
PY_IGNORE_IMPORTMISMATCH: 1
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
fail-fast: false
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pixi
uses: prefix-dev/setup-pixi@v0.8.14
with:
pixi-version: v0.48.2
cache: false
- name: Install environment
run: |
pixi install
pixi install -e test
- name: Test
run: |
pixi run -e test test -vv