Skip to content

Bump packaging from 25.0 to 26.0 #100

Bump packaging from 25.0 to 26.0

Bump packaging from 25.0 to 26.0 #100

Workflow file for this run

name: CI
on:
pull_request:
branches:
- dev
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with flake8
run: |
flake8 src tests
- name: Run tests
run: |
pip install pytest
PYTHONPATH=src pytest