Skip to content

remove CODEOWNERS file #36

remove CODEOWNERS file

remove CODEOWNERS file #36

---
name: Python package
'on':
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version-file: pyproject.toml
cache: pip
cache-dependency-path: |
poetry.lock
- name: Install poetry
run: |
python -m pip install poetry
- name: Install package
run: |
poetry install
- name: Test with pytest
run: |
python -m poetry run pytest