Skip to content

feat: add default values for arguments to non-display functions #66

feat: add default values for arguments to non-display functions

feat: add default values for arguments to non-display functions #66

Workflow file for this run

---
name: test
on:
push:
branches: "*"
pull_request:
types:
- opened
- reopened
- edited
- synchronize
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["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 }}
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.6.1
- name: Install Python dependencies
run: make poetrysetup
- name: Run type checks
run: make typetest
- name: Run unit tests
run: make unittest
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.6.1
- name: Install Python dependencies
run: make poetrysetup
- name: Run formatting tests
run: make fmt && make changes