Skip to content

chore(version): Bump version 2.3.1 -> 2.3.2 #67

chore(version): Bump version 2.3.1 -> 2.3.2

chore(version): Bump version 2.3.1 -> 2.3.2 #67

Workflow file for this run

---
name: test
on:
push:
workflow_dispatch:
# Tests must always run! How can I reuse this?
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository.
uses: actions/checkout@v3
- name: Setup Python.
uses: actions/setup-python@v4
with:
python-version: '3.10'
# Eventually this step should be replaced with pip install .[test] instead.
# BUG: pip install .[test] does not install pytest. See pipeline number 3.
- name: Install Dependencies.
run: |-
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install poetry
python3 -m poetry install --with test
- name: Test
run: |-
source .venv/bin/activate
# which python3
# python3 -m pip list
python3 -m pytest
- name: Verify Build.
run: |-
source .venv/bin/activate
python3 -m poetry install --with ci
python3 -m build
python3 -m twine check dist/*