Skip to content

Fix abs for 1d scalar case #26

Fix abs for 1d scalar case

Fix abs for 1d scalar case #26

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
cache: pip
- name: Install hatch
run: pipx install hatch
- name: Run linter
run: hatch fmt --check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
cache: pip
- name: Install hatch
run: pipx install hatch
- name: Run tests
run: hatch test --cover