Skip to content

Merge pull request #115 from cphyc/pre-commit-ci-update-config #468

Merge pull request #115 from cphyc/pre-commit-ci-update-config

Merge pull request #115 from cphyc/pre-commit-ci-update-config #468

Workflow file for this run

name: Build and Test
on: [push, pull_request]
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Python
uses: actions/setup-python@v5
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Install package
shell: bash
run: python -m pip install -e .[test]
- name: pytest
shell: bash
run: pytest tests