Skip to content

Update snapshot.md

Update snapshot.md #17

Workflow file for this run

name: build
on:
push:
pull_request:
schedule:
- cron: "13 1 * * 5" # Run weekly at a randomly-picked time
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
imp-branch: [develop]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup conda
run: |
support/setup_ci.sh ${{ matrix.imp-branch }} ${{ matrix.python-version }}
- name: Test
run: |
eval "$(conda shell.bash hook)"
conda activate python${{ matrix.python-version }}
pytest support/test/*.py -v