Skip to content

Merge pull request #85 from dnplus/codex/add-github-action-for-pypi-d… #2

Merge pull request #85 from dnplus/codex/add-github-action-for-pypi-d…

Merge pull request #85 from dnplus/codex/add-github-action-for-pypi-d… #2

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest
- name: Run tests
run: pytest