Skip to content

Bump pygments from 2.10.0 to 2.15.0 #127

Bump pygments from 2.10.0 to 2.15.0

Bump pygments from 2.10.0 to 2.15.0 #127

Workflow file for this run

name: Run Unittest
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install poetry and dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run test
run: |
poetry run python -m pytest ./tests