Skip to content

Update readme with install instruction and project meta #23

Update readme with install instruction and project meta

Update readme with install instruction and project meta #23

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
name: Push
on: [push]
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: [3.9]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make init-env
- name: Test
run: make test
- name: Lint
run: make lint