Skip to content

ci(github): add workflow build.yml #6

ci(github): add workflow build.yml

ci(github): add workflow build.yml #6

Workflow file for this run

name: test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Python
uses: actions/setup-python@v5
with:
cache: pip
python-version: 3
- name: Install dependencies
run: pip install -e .[test]
- name: Run pytest
run: pytest