Skip to content

Bump pygments from 2.10.0 to 2.15.0 #28

Bump pygments from 2.10.0 to 2.15.0

Bump pygments from 2.10.0 to 2.15.0 #28

Workflow file for this run

name: Tests
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
run-test:
name: Run test
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install Python dependencies
run: pip install -r requirements-dev.txt
- name: run tests
run: make test