Skip to content

Stripping trailing dot from record names #218

Stripping trailing dot from record names

Stripping trailing dot from record names #218

Workflow file for this run

name: CI Workflow
on:
push:
branches: [ "main" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: 'poetry'
- name: Install Dependencies
run: |
pip install --upgrade pip
pip install --upgrade setuptools
poetry env use "3.11"
poetry install
- name: Run Lints
run: |
poetry run black nodestream_akamai --check
poetry run isort nodestream_akamai --check-only
- name: Run Tests
run: |
poetry run pytest