Skip to content

Initial structure of repo #1

Initial structure of repo

Initial structure of repo #1

Workflow file for this run

name: Lint and Test
on: [push, pull_request]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Bootstrap poetry
run: curl -sSL https://install.python-poetry.org | python - -y
- name: Lint
run: make lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Bootstrap poetry
run: curl -sSL https://install.python-poetry.org | python - -y
- name: Run tests
run: make test