Skip to content

FIX: fix escaping in re expressions (replaces #127); N.B. CifFile (Py… #10

FIX: fix escaping in re expressions (replaces #127); N.B. CifFile (Py…

FIX: fix escaping in re expressions (replaces #127); N.B. CifFile (Py… #10

Workflow file for this run

name: smoke test
on:
# Runs on pushes targeting the default branch
push:
branches-ignore:
- master
# branches: ['develop']
pull_request:
branches: ['develop']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Default to bash
defaults:
run:
shell: bash
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- name: 'ubuntu-22.04'
- name: 'macos-latest'
- name: 'windows-latest'
cmd_extra: '-win'
env: ['py310', 'py311', 'py312', 'py313']
runs-on: ${{ matrix.os.name }}
steps:
# checkout repo
- uses: actions/checkout@v2
# set up pixi
- uses: prefix-dev/[email protected]
with:
environments: ${{ matrix.env }}
pixi-version: v0.39.5
manifest-path: pixi/pixi.toml
# run install to see if it works
- name: Build
run: pixi run --manifest-path pixi/pixi.toml -e ${{ matrix.env }} install${{ matrix.os.cmd_extra }}