Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
Test:
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os:
- ubuntu-latest
python-version:
- "3.9"
- "3.x"
steps:
- uses: actions/checkout@v4
- name: "Set up Python ${{ matrix.python-version }}"
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
cache: pip
- run: "pip install -e .[dev]"
- run: py.test -vvv --cov .
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/action@v3.0.1
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pip install -U build
- run: python -m build .