Skip to content

Remove redundant DefaultT generic type from Ok.unwrap_or() #43

Remove redundant DefaultT generic type from Ok.unwrap_or()

Remove redundant DefaultT generic type from Ok.unwrap_or() #43

Workflow file for this run

name: Integration
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11"]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: "1.2.2"
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Install project
run: poetry install --no-interaction
- name: Run checks
run: |
source .venv/bin/activate
make check
- name: Run tests
run: |
source .venv/bin/activate
make test